diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs index 9581bc0c7e2d..e85bc5d2cda2 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs @@ -26,7 +26,7 @@ namespace MachineLearning.Tests.ScenarioTests { public class WebServiceTests : BaseScenarioTests { - private const string DefaultLocation = "South Central US"; + private const string DefaultLocation = "West Central US"; private const string TestServiceNamePrefix = "amlws"; private const string TestCommitmentPlanNamePrefix = "amlcp"; private const string TestResourceGroupNamePrefix = "amlrg"; @@ -42,6 +42,7 @@ public class WebServiceTests : BaseScenarioTests /// is working as expected, re-record the test against Prod before submitting an official pull request. /// private readonly string TestServiceDefinitionFile; + private readonly string TestServiceDefinitionFileWithLargePayload; private const int AsyncOperationPollingIntervalSeconds = 5; @@ -56,6 +57,7 @@ private delegate void AMLWebServiceTestDelegate( public WebServiceTests() { TestServiceDefinitionFile = Path.Combine(Directory.GetCurrentDirectory(), "TestData", "GraphWebServiceDefinition_Prod.json"); + TestServiceDefinitionFileWithLargePayload = Path.Combine(Directory.GetCurrentDirectory(), "TestData", "GraphWebServiceDefinition_LargePayload_Prod.json"); } [Fact] @@ -93,6 +95,13 @@ public void CreateGetRemoveGraphWebService() Assert.NotNull(expectedCloudException.Body); Assert.True(string.Equals(expectedCloudException.Body.Code, "NotFound")); } + catch (Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } finally { // Remove the web service @@ -141,6 +150,13 @@ public void CreateAndUpdateOnGraphWebService() Assert.Equal(serviceKeys.Primary, serviceUpdates.Properties.Keys.Primary); Assert.Equal(serviceKeys.Secondary, serviceDefinition.Properties.Keys.Secondary); } + catch (Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } finally { // Remove the web service @@ -149,6 +165,113 @@ public void CreateAndUpdateOnGraphWebService() }); } + [Fact] + public void CreateAndPostOnGraphWebService() + { + const string NewRegion = "southcentralus"; + + this.RunAMLWebServiceTestScenario((webServiceName, resourceGroupName, resourcesClient, amlServicesClient, cpResourceId, storageAccount) => + { + try + { + // Create and validate the AML service resource + var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(this.TestServiceDefinitionFile, cpResourceId, storageAccount); + var webService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService, serviceDefinition); + + //Validate that the expected not found exception is thrown before create the regional properties + var expectedCloudException = Assert.Throws(() => amlServicesClient.WebServices.Get(resourceGroupName, webServiceName, NewRegion)); + Assert.NotNull(expectedCloudException.Body); + Assert.True(string.Equals(expectedCloudException.Body.Code, "NotFound")); + + // Submit some updates to this resource + amlServicesClient.WebServices.CreateRegionalPropertiesWithRequestId(resourceGroupName, webServiceName, NewRegion); + + // Retrieve the AML web service after POST + var retrievedService = amlServicesClient.WebServices.Get(resourceGroupName, webServiceName, NewRegion); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, retrievedService); + Assert.NotNull(retrievedService.Properties); + var properties = retrievedService.Properties as WebServicePropertiesForGraph; + Assert.NotNull(properties); + Assert.NotNull(properties.Package); + Assert.NotNull(properties.Package.Nodes); + Assert.NotNull(properties.Package.Nodes["node1"]); + Assert.NotNull(properties.Package.Nodes["node1"].Parameters); + Assert.NotNull(properties.Package.Nodes["node1"].Parameters["Account Key"]); + + WebServiceParameter param = properties.Package.Nodes["node1"].Parameters["Account Key"]; + + string expectedThumbprint = "ONE_THUMBPRINT"; + Assert.Equal(expectedThumbprint, param.CertificateThumbprint); + } + catch (Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } + finally + { + // Remove the web service + BaseScenarioTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName)); + } + }); + } + + [Fact] + public void CreateGetRemoveGraphWebServiceWithLargePayload() + { + this.RunAMLWebServiceTestScenario((webServiceName, resourceGroupName, resourcesClient, amlServicesClient, cpResourceId, storageAccount) => + { + 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(this.TestServiceDefinitionFileWithLargePayload, cpResourceId, storageAccount); + var webService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService); + + // 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")); + } + catch (Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } + finally + { + // Remove the web service + if (!serviceWasRemoved) + { + BaseScenarioTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName)); + } + } + }); + } + [Fact] public void CreateAndListWebServices() { @@ -189,9 +312,9 @@ public void CreateAndListWebServices() 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(); + var servicesInSubscription = amlServicesClient.WebServices.ListBySubscriptionIdWithHttpMessagesAsync().Result; Assert.NotNull(servicesInSubscription); - servicesList = servicesInSubscription.ToList(); + servicesList = servicesInSubscription.Body.ToList(); Assert.NotNull(servicesList); Assert.True(servicesList.Count >= 4); Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service1ExpectedId, StringComparison.OrdinalIgnoreCase))); @@ -200,6 +323,13 @@ public void CreateAndListWebServices() string otherServiceExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, otherResourceGroupName, otherServiceName); Assert.True(servicesList.Any(svc => string.Equals(svc.Id, otherServiceExpectedId, StringComparison.OrdinalIgnoreCase))); } + catch(Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } finally { // Remove the resources created by the test @@ -342,7 +472,7 @@ private static void ValidateWebServiceResource(string subscriptionId, string res private static Tuple CreateCommitmentPlanResource(string resourceGroupName, string commitmentPlanName, string deploymentName, ResourceManagementClient resourcesClient, string cpApiVersion) { - string deploymentParams = @"{'planName': {'value': '" + commitmentPlanName + "'}, 'planSkuName': {'value': 'PLAN_SKU_NAME'}, 'planSkuTier': {'value': 'PLAN_SKU_TIER'}, 'apiVersion': {'value': '" + cpApiVersion + "'}}"; + string deploymentParams = @"{'planName': {'value': '" + commitmentPlanName + "'}, 'planSkuName': {'value': 'S1'}, 'planSkuTier': {'value': 'Standard'}, 'apiVersion': {'value': '" + cpApiVersion + "'}}"; var deploymentProperties = new DeploymentProperties { Template = JObject.Parse(File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "TestData", "DeployCommitmentPlanTemplate.json"))), 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 0b6335638da9..a1343810af5d 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,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "df64abd8-205d-439d-b63f-828a1f2d8284" + "efff1a92-dc7e-4c28-a166-23d73711d9ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353\",\r\n \"name\": \"amlrg353\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093\",\r\n \"name\": \"amlrg3093\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,53 +34,54 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:08:01 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "beacbc44-0765-4d93-a2db-74970e975df2" + "c7944e54-a204-487d-950b-43786488833c" ], "x-ms-correlation-request-id": [ - "beacbc44-0765-4d93-a2db-74970e975df2" + "c7944e54-a204-487d-950b-43786488833c" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011323Z:beacbc44-0765-4d93-a2db-74970e975df2" + "WESTCENTRALUS:20170309T080801Z:c7944e54-a204-487d-950b-43786488833c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:13:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Storage/storageAccounts/amlstor6957?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYW1sc3RvcjY5NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Storage/storageAccounts/amlstor7289?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Mjg5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "97" ], "x-ms-client-request-id": [ - "4952a52e-c0a8-4ffe-bffd-e5efb864e152" + "79f9c649-2347-4b12-bca9-1527194ca674" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -90,233 +92,243 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "25" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "a6759c76-bcb2-4087-bb7f-5123408b0148" + "Date": [ + "Thu, 09 Mar 2017 08:08:04 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/bdc5d92e-087c-443f-a733-a1eacfd5fdb1?monitor=true&api-version=2015-06-15" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/de494db1-cf32-4be8-a3b4-ba5960502b86?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "dadd81fe-0b40-4b2d-a504-0aca05a675a9" + ], "x-ms-correlation-request-id": [ - "a6759c76-bcb2-4087-bb7f-5123408b0148" + "dadd81fe-0b40-4b2d-a504-0aca05a675a9" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011330Z:a6759c76-bcb2-4087-bb7f-5123408b0148" + "WESTCENTRALUS:20170309T080804Z:dadd81fe-0b40-4b2d-a504-0aca05a675a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:13:29 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/bdc5d92e-087c-443f-a733-a1eacfd5fdb1?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2JkYzVkOTJlLTA4N2MtNDQzZi1hNzMzLWExZWFjZmQ1ZmRiMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/de494db1-cf32-4be8-a3b4-ba5960502b86?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2RlNDk0ZGIxLWNmMzItNGJlOC1hM2I0LWJhNTk2MDUwMmI4Nj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "75" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "c9f19961-bf15-482a-aed6-a80f323f2e09" + "Date": [ + "Thu, 09 Mar 2017 08:08:34 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "282ec9b9-cb59-465c-b99d-6ff8cedb01d7" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14980" ], "x-ms-correlation-request-id": [ - "c9f19961-bf15-482a-aed6-a80f323f2e09" + "282ec9b9-cb59-465c-b99d-6ff8cedb01d7" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011400Z:c9f19961-bf15-482a-aed6-a80f323f2e09" + "WESTCENTRALUS:20170309T080834Z:282ec9b9-cb59-465c-b99d-6ff8cedb01d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:14:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Storage/storageAccounts/amlstor6957/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYW1sc3RvcjY5NTcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Storage/storageAccounts/amlstor7289/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Mjg5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf91afff-39b6-400a-a9dd-f5081bb43171" + "4f768234-8766-443d-829b-276e0a37ac19" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"key1\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\",\r\n \"key2\": \"3A2kEiYjf/0f+2xsqzN2vYCVbZ9ebqQXdxPKKPNOD9Xm2khlGIlvZ+Qj1MWnufZVyffczPOeE4I7g2+/Y+IeLA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"SOME_STORAGE_KEY\",\r\n \"key2\": \"SOME_OTHER_STORAGE_KEY\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "198" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "ad26e8ae-ad64-4679-b890-67e0e4f9a620" + "Date": [ + "Thu, 09 Mar 2017 08:08:34 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "32e5594c-ddd6-43bb-8051-2f6a4ca4f209" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "ad26e8ae-ad64-4679-b890-67e0e4f9a620" + "32e5594c-ddd6-43bb-8051-2f6a4ca4f209" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011400Z:ad26e8ae-ad64-4679-b890-67e0e4f9a620" + "WESTCENTRALUS:20170309T080835Z:32e5594c-ddd6-43bb-8051-2f6a4ca4f209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:14:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fc07123-d834-4c10-bf5f-e22fe84db1f5" + "0cf01bcd-a8ce-4b28-b431-7a047c91b7bb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/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 \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\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 \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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": [ - "1186" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:08:34 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14999" ], "x-ms-request-id": [ - "a559cd25-bb8d-4dd5-acc9-0a2e30e867e1" + "fe8af103-e690-413a-8f94-6d70c9db7ff2" ], "x-ms-correlation-request-id": [ - "a559cd25-bb8d-4dd5-acc9-0a2e30e867e1" + "fe8af103-e690-413a-8f94-6d70c9db7ff2" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011400Z:a559cd25-bb8d-4dd5-acc9-0a2e30e867e1" + "WESTCENTRALUS:20170309T080835Z:fe8af103-e690-413a-8f94-6d70c9db7ff2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2RlcGxhbWxjcDQzNjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A2MzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "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\": \"amlcp4366\"\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}", + "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\": \"amlcp6381\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\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": [ - "1274" + "1258" ], "x-ms-client-request-id": [ - "94e3461d-b78e-4cda-b74e-7aef823209a8" + "c74f46e8-c44f-44e7-b5cb-5bdfbad7e8ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366\",\r\n \"name\": \"deplamlcp4366\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4366\"\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-18T01:14:01.7069455Z\",\r\n \"duration\": \"PT0.3094051S\",\r\n \"correlationId\": \"50b9557f-7a03-42b1-b0e1-779d0011fbf1\",\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/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381\",\r\n \"name\": \"deplamlcp6381\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp6381\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T08:08:36.0960781Z\",\r\n \"duration\": \"PT0.1418088S\",\r\n \"correlationId\": \"213447ed-d18e-401c-a292-0a815518bb8c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "748" + "769" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,215 +336,222 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:08:36 GMT" + ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366/operationStatuses/08587380728440801310?api-version=2015-11-01" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381/operationStatuses/08587125599695233423?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "50b9557f-7a03-42b1-b0e1-779d0011fbf1" + "213447ed-d18e-401c-a292-0a815518bb8c" ], "x-ms-correlation-request-id": [ - "50b9557f-7a03-42b1-b0e1-779d0011fbf1" + "213447ed-d18e-401c-a292-0a815518bb8c" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011401Z:50b9557f-7a03-42b1-b0e1-779d0011fbf1" + "WESTCENTRALUS:20170309T080836Z:213447ed-d18e-401c-a292-0a815518bb8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366/operationStatuses/08587380728440801310?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2RlcGxhbWxjcDQzNjYvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODczODA3Mjg0NDA4MDEzMTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381/operationStatuses/08587125599695233423?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A2MzgxL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1NTk5Njk1MjMzNDIzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:05 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14998" ], "x-ms-request-id": [ - "7fea6f84-271c-4099-afa7-0268fffc06ae" + "a08b034d-b5b8-490a-b34b-f8759c25ed05" ], "x-ms-correlation-request-id": [ - "7fea6f84-271c-4099-afa7-0268fffc06ae" + "a08b034d-b5b8-490a-b34b-f8759c25ed05" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011432Z:7fea6f84-271c-4099-afa7-0268fffc06ae" + "WESTCENTRALUS:20170309T080906Z:a08b034d-b5b8-490a-b34b-f8759c25ed05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2RlcGxhbWxjcDQzNjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A2MzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366\",\r\n \"name\": \"deplamlcp4366\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4366\"\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-18T01:14:06.0568828Z\",\r\n \"duration\": \"PT4.6593424S\",\r\n \"correlationId\": \"50b9557f-7a03-42b1-b0e1-779d0011fbf1\",\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/amlcp4366\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381\",\r\n \"name\": \"deplamlcp6381\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp6381\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T08:08:39.3329891Z\",\r\n \"duration\": \"PT3.3787198S\",\r\n \"correlationId\": \"213447ed-d18e-401c-a292-0a815518bb8c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp6381\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "830" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:05 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14997" ], "x-ms-request-id": [ - "cdd716df-b859-4d99-8e04-bcb4f309ebe5" + "47b7291c-aee8-4d86-a99e-ada13b6a764c" ], "x-ms-correlation-request-id": [ - "cdd716df-b859-4d99-8e04-bcb4f309ebe5" + "47b7291c-aee8-4d86-a99e-ada13b6a764c" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011432Z:cdd716df-b859-4d99-8e04-bcb4f309ebe5" + "WESTCENTRALUS:20170309T080906Z:47b7291c-aee8-4d86-a99e-ada13b6a764c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4366?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nLy9jb21taXRtZW50UGxhbnMvYW1sY3A0MzY2P2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.MachineLearning//commitmentPlans/amlcp6381?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNjM4MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ed84408-41ce-4fa0-82f8-7c27b73f865b" + "7add1453-c338-400c-8341-7afe82caaa2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"etag\": \"00000901-0000-0000-0000-573bc1db0000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp4366\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-18T01:14:02.8089875Z\",\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 \"maxAssociationLimit\": 10000\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\": \"00009903-0000-0000-0000-58c10d850000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp6381\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T08:08:36.3560224Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1019" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "eeb9cc4c-1533-4a1f-b9cf-208acf572227" + "Date": [ + "Thu, 09 Mar 2017 08:09:06 GMT" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "Pragma": [ + "no-cache" ], - "x-ms-correlation-request-id": [ - "11d1843a-738a-4f4e-907d-a0b3ac2cc7bd" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011433Z:11d1843a-738a-4f4e-907d-a0b3ac2cc7bd" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "a7c158a0-2910-4efd-bbdb-4ca46073bec8" ], - "Date": [ - "Wed, 18 May 2016 01:14:32 GMT" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "5081a9d4-ccd8-4122-bb67-84438f1a3108" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T080906Z:5081a9d4-ccd8-4122-bb67-84438f1a3108" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzMjM3MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czQyOTc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "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 \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\",\r\n \"key\": \"SOME_STORAGE_KEY\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\"\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5901" + "15025" ], "x-ms-client-request-id": [ - "fbb122b7-591d-4dfa-8c27-1b4753a108e2" + "51bef486-7e40-401a-b081-9b41e62d1929" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371\",\r\n \"name\": \"amlws2371\",\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\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297\",\r\n \"name\": \"amlws4297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6165" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,221 +559,304 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "449" + ], "x-ms-correlation-request-id": [ - "9d2caa69-bbc8-4bca-9c45-1ab92f5d64ce" + "5ca25f92-9c89-40a0-b467-2283e1a3b9e6" ], "x-ms-request-id": [ - "50670419-f5c0-40a6-b9b3-b6a519c98cb2" + "45263c4d-7038-4cdd-83b4-68f455d28c05" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011440Z:9d2caa69-bbc8-4bca-9c45-1ab92f5d64ce" + "WESTCENTRALUS:20170309T080911Z:5ca25f92-9c89-40a0-b467-2283e1a3b9e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:40 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2IwYzk0MTIxLWYxMTEtNDQ1NS04MGZkLTI1YTJjMmY1NzM3Nj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzZGE4NmYtMDkyNi00NTY5LWI4YWQtYzQ2NWU5MWJjMWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376\",\r\n \"name\": \"b0c94121-f111-4455-80fd-25a2c2f57376\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:14:40.3223021Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"name\": \"b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:10.7860223Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:16 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "70" + ], "x-ms-correlation-request-id": [ - "0946c652-02f7-41df-b695-3b0ba8b0ce2b" + "c72c6cb9-062d-42b9-a02b-70c209e886be" ], "x-ms-request-id": [ - "91e01dcb-9199-4e65-991e-c1bac6c9c3c6" + "3cba2f50-d89d-421c-9b10-398305472b1a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14992" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011446Z:0946c652-02f7-41df-b695-3b0ba8b0ce2b" + "WESTCENTRALUS:20170309T080916Z:c72c6cb9-062d-42b9-a02b-70c209e886be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:46 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2IwYzk0MTIxLWYxMTEtNDQ1NS04MGZkLTI1YTJjMmY1NzM3Nj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzZGE4NmYtMDkyNi00NTY5LWI4YWQtYzQ2NWU5MWJjMWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376\",\r\n \"name\": \"b0c94121-f111-4455-80fd-25a2c2f57376\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:14:40.3223021Z\",\r\n \"endTime\": \"2016-05-18T01:14:50.3290536Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"name\": \"b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:10.7860223Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:21 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "19" + ], "x-ms-correlation-request-id": [ - "5184aef5-e5b1-44f9-a7b6-bf61ffd69bc9" + "f8ae5c3b-82f6-468c-a5fb-db695f020ed7" ], "x-ms-request-id": [ - "6923ebee-d535-4a9b-86ee-6ee49b157d96" + "b896d239-7059-4b2b-9820-a4aa7f95b491" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14991" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011451Z:5184aef5-e5b1-44f9-a7b6-bf61ffd69bc9" + "WESTCENTRALUS:20170309T080921Z:f8ae5c3b-82f6-468c-a5fb-db695f020ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:51 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzMjM3MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzZGE4NmYtMDkyNi00NTY5LWI4YWQtYzQ2NWU5MWJjMWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371\",\r\n \"name\": \"amlws2371\",\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-18T01:14:40.1965104Z\",\r\n \"modifiedOn\": \"2016-05-18T01:14:50.4134101Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/646597da03b94cbc82d6157ec122f123/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"name\": \"b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:09:10.7860223Z\",\r\n \"endTime\": \"2017-03-09T08:09:23.5773794Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5915" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:26 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], "x-ms-correlation-request-id": [ - "ed9e4d42-ce52-4b4e-bc18-73213eab6396" + "b9f7b496-1c59-41c5-9da2-d64caac1e5ef" ], "x-ms-request-id": [ - "2c0fe7e1-00c2-460b-b654-e68bc74d6336" + "c861218c-2c9e-4174-ad60-291f05551cd1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14990" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011451Z:ed9e4d42-ce52-4b4e-bc18-73213eab6396" + "WESTCENTRALUS:20170309T080926Z:b9f7b496-1c59-41c5-9da2-d64caac1e5ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czQyOTc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297\",\r\n \"name\": \"amlws4297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:12.4691516Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:23.6390019Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17efc65f9f2f4853bd4013a391cadc22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_04\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 18 May 2016 01:14:51 GMT" + "Thu, 09 Mar 2017 08:09:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "18" + ], + "x-ms-correlation-request-id": [ + "bcd3cd63-2578-4ad1-a0d0-cc4101d10c5d" + ], + "x-ms-request-id": [ + "1f0096e1-6534-42a6-aeaf-d86d14f64c7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T080926Z:bcd3cd63-2578-4ad1-a0d0-cc4101d10c5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM3OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE2Mz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "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 \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\",\r\n \"key\": \"SOME_STORAGE_KEY\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\"\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5901" + "15025" ], "x-ms-client-request-id": [ - "f703eb11-8945-47e7-a2df-043d4ff9476d" + "59e98bb5-229d-443a-9cd9-273afe0ec4a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378\",\r\n \"name\": \"amlws6378\",\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\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163\",\r\n \"name\": \"amlws163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6165" + "376" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,323 +864,246 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "169" + ], "x-ms-correlation-request-id": [ - "6b922d94-cdf6-4625-948d-88099cbfe9f8" + "6f640e75-2606-411b-a8c9-cadfd92a484f" ], "x-ms-request-id": [ - "04a5d6d6-80cf-4942-b0fc-bdba2c226251" + "43c12751-4c66-4db9-acf1-2a1385ad4674" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011453Z:6b922d94-cdf6-4625-948d-88099cbfe9f8" + "WESTCENTRALUS:20170309T080927Z:6f640e75-2606-411b-a8c9-cadfd92a484f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:52 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzAzODcxNGUxLTI4MmItNDhjZC1iNTNhLWJkMTg2OWZiMjAyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZjg2ZTRmOTktMzBjYi00ODg5LWIxYzItMGE2MTExZDhjOTVjP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"name\": \"038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:14:52.7179112Z\",\r\n \"percentComplete\": 0.55555555555555558\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c\",\r\n \"name\": \"f86e4f99-30cb-4889-b1c2-0a6111d8c95c\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:27.4423525Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "a47517c2-190a-4a18-bf0d-de982c017021" - ], - "x-ms-request-id": [ - "53c95263-79ab-4e66-9a6c-aaafc6583408" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011458Z:a47517c2-190a-4a18-bf0d-de982c017021" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:09:32 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:14:57 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzAzODcxNGUxLTI4MmItNDhjZC1iNTNhLWJkMTg2OWZiMjAyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"name\": \"038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:14:52.7179112Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Vary": [ + "Accept-Encoding" ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "27" ], "x-ms-correlation-request-id": [ - "0fd7a8fc-6647-4d88-be36-fead0f5e5ca4" + "8007eded-53d1-4dc7-9478-abd2cff8f936" ], "x-ms-request-id": [ - "3bc2badb-36f2-4a65-8668-18626e552d11" + "c3009e96-a797-484b-872f-05be54137954" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14988" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011503Z:0fd7a8fc-6647-4d88-be36-fead0f5e5ca4" + "WESTCENTRALUS:20170309T080932Z:8007eded-53d1-4dc7-9478-abd2cff8f936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:02 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzAzODcxNGUxLTI4MmItNDhjZC1iNTNhLWJkMTg2OWZiMjAyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZjg2ZTRmOTktMzBjYi00ODg5LWIxYzItMGE2MTExZDhjOTVjP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"name\": \"038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:14:52.7179112Z\",\r\n \"percentComplete\": 0.77777777777777779\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c\",\r\n \"name\": \"f86e4f99-30cb-4889-b1c2-0a6111d8c95c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:09:27.4423525Z\",\r\n \"endTime\": \"2017-03-09T08:09:34.1551752Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "7a7ee637-e43a-4405-a5b8-8e7026f5cfe0" - ], - "x-ms-request-id": [ - "0517d07d-1629-4ef7-9209-30d57e122206" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011508Z:7a7ee637-e43a-4405-a5b8-8e7026f5cfe0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:09:37 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:15:07 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzAzODcxNGUxLTI4MmItNDhjZC1iNTNhLWJkMTg2OWZiMjAyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"name\": \"038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:14:52.7179112Z\",\r\n \"endTime\": \"2016-05-18T01:15:09.1094579Z\",\r\n \"percentComplete\": 1.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "380" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "8" ], "x-ms-correlation-request-id": [ - "03aa5cf5-969e-41ef-b466-c8666c2a8980" + "1f17f90b-0ae4-4942-b0d4-c143040d4ff1" ], "x-ms-request-id": [ - "f36c6467-e903-402f-8ef0-28dc21623726" + "5b87619b-794d-4232-b205-6584882dd28d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" + "14987" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011513Z:03aa5cf5-969e-41ef-b466-c8666c2a8980" + "WESTCENTRALUS:20170309T080937Z:1f17f90b-0ae4-4942-b0d4-c143040d4ff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:12 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM3OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE2Mz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378\",\r\n \"name\": \"amlws6378\",\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-18T01:14:52.8413554Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:09.1947689Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/f87ade0a66074ff1b8e1d618c67a5fcc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163\",\r\n \"name\": \"amlws163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:28.1397481Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:34.213807Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1ae89aa2f984e5aa828d7015f3c94d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_05\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5915" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:37 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "19" + ], "x-ms-correlation-request-id": [ - "8ed8df48-9ea3-4274-89ae-50a199b954dd" + "33ffe403-4904-40cc-8d7a-2c013a37b447" ], "x-ms-request-id": [ - "bba10882-2587-4d12-9659-45f4ba6bd9a6" + "73ecff82-7427-4b3f-a34a-d22b4cad3d69" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14736" + "14986" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011514Z:8ed8df48-9ea3-4274-89ae-50a199b954dd" + "WESTCENTRALUS:20170309T080937Z:33ffe403-4904-40cc-8d7a-2c013a37b447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:13 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNTgyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czc1OTE/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "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 \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\",\r\n \"key\": \"SOME_STORAGE_KEY\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\"\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5901" + "15025" ], "x-ms-client-request-id": [ - "2fc23ca9-3e5b-45b5-9ecb-cb9121bc40bb" + "f7d54f51-1e27-48ce-997a-75394e4c2d49" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823\",\r\n \"name\": \"amlws5823\",\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\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591\",\r\n \"name\": \"amlws7591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6165" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,272 +1111,246 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "149" + ], "x-ms-correlation-request-id": [ - "266dadaa-f01b-4f9d-baff-97cc7b8621a6" + "2c880618-071a-4994-a2cc-7e1f6b2951b3" ], "x-ms-request-id": [ - "626d0133-9898-4988-9d1c-2765ec834c82" + "b3718cee-4faa-4f55-a995-3212f424b01d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011515Z:266dadaa-f01b-4f9d-baff-97cc7b8621a6" + "WESTCENTRALUS:20170309T080937Z:2c880618-071a-4994-a2cc-7e1f6b2951b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:14 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjNDI0ODk5LTkyNWQtNDkwMS05ODU4LTE1M2ViZTdkYTZkMD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN2Q5ZWI1NDEtYzBiNC00OGRkLWIyYzEtOTlhMGFiZTBkOWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"name\": \"2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:15:18.9153573Z\",\r\n \"percentComplete\": 0.22222222222222221\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba\",\r\n \"name\": \"7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:39.4991927Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "7bf8f2ff-a205-446a-b68d-8e4da8caac9d" - ], - "x-ms-request-id": [ - "6446809b-0e26-46fe-b795-dadf0caf08b8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011520Z:7bf8f2ff-a205-446a-b68d-8e4da8caac9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:09:42 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:15:19 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjNDI0ODk5LTkyNWQtNDkwMS05ODU4LTE1M2ViZTdkYTZkMD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"name\": \"2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:15:18.9153573Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "16" ], "x-ms-correlation-request-id": [ - "b0c2b640-6b02-43db-84ac-d62efe42786e" + "f64302af-a117-4ac6-a470-8d5baf2f1277" ], "x-ms-request-id": [ - "9a5facde-4a28-4181-b8e0-54a3cb032e5c" + "c8332d70-27ab-4747-96fc-4a0385f841ba" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14985" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011525Z:b0c2b640-6b02-43db-84ac-d62efe42786e" + "WESTCENTRALUS:20170309T080942Z:f64302af-a117-4ac6-a470-8d5baf2f1277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjNDI0ODk5LTkyNWQtNDkwMS05ODU4LTE1M2ViZTdkYTZkMD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN2Q5ZWI1NDEtYzBiNC00OGRkLWIyYzEtOTlhMGFiZTBkOWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"name\": \"2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:15:18.9153573Z\",\r\n \"endTime\": \"2016-05-18T01:15:26.6409848Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba\",\r\n \"name\": \"7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:09:39.4991927Z\",\r\n \"endTime\": \"2017-03-09T08:09:45.0114993Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "99d6a223-128b-4c23-bd92-ab4a60ecae9c" + "bd19dec7-0ff2-4020-96ed-3df40577886b" ], "x-ms-request-id": [ - "890c0094-fc89-4af8-8302-a6c058875ab8" + "47e0f26e-183e-4926-adac-f30f5a1fc18e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "14984" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011530Z:99d6a223-128b-4c23-bd92-ab4a60ecae9c" + "WESTCENTRALUS:20170309T080947Z:bd19dec7-0ff2-4020-96ed-3df40577886b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:30 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNTgyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czc1OTE/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823\",\r\n \"name\": \"amlws5823\",\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-18T01:15:15.0624739Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:26.7025838Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/536534b57c2f4edaa708d5e34bcf66b4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591\",\r\n \"name\": \"amlws7591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:38.5768612Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:45.061854Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a7d335fb9b9463481090eb96763a2e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_06\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5915" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "18" + ], "x-ms-correlation-request-id": [ - "5c01c0b8-b102-4cfb-a1db-bf59dba9fc37" + "7ec11fce-faf5-48d0-8bb1-0e68d8c597c5" ], "x-ms-request-id": [ - "d7528ec3-fb66-47d7-8c7b-a985edd6d86e" + "718b23c8-cd11-4a11-adeb-9b4c68decfe0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14983" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011530Z:5c01c0b8-b102-4cfb-a1db-bf59dba9fc37" + "WESTCENTRALUS:20170309T080947Z:7ec11fce-faf5-48d0-8bb1-0e68d8c597c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:30 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8762?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODc2Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg4212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnNDIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "f6bd3789-0fd3-41f7-95b7-8633bf531007" + "c55d0031-a81d-496b-b305-e4ff7b1d393d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762\",\r\n \"name\": \"amlrg8762\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212\",\r\n \"name\": \"amlrg4212\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1359,59 +1358,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:47 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "ff3bf83e-40a6-4812-9431-694f243352e2" + "65b03068-936c-4597-b6e7-bc937d1c1d4a" ], "x-ms-correlation-request-id": [ - "ff3bf83e-40a6-4812-9431-694f243352e2" + "65b03068-936c-4597-b6e7-bc937d1c1d4a" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011531Z:ff3bf83e-40a6-4812-9431-694f243352e2" + "WESTCENTRALUS:20170309T080947Z:65b03068-936c-4597-b6e7-bc937d1c1d4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:31 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIwNDc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnNDIxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "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 \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\",\r\n \"key\": \"SOME_STORAGE_KEY\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\"\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5901" + "15025" ], "x-ms-client-request-id": [ - "094da156-0755-4c8a-8958-0549fbeadb01" + "e8d5de24-eb95-4fca-8e04-5504860001ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047\",\r\n \"name\": \"amlws2047\",\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\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943\",\r\n \"name\": \"amlws1943\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6166" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1419,323 +1419,361 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "172" + ], "x-ms-correlation-request-id": [ - "9ad0ce6b-4630-42f4-9647-b4de2d80a633" + "e0794127-8fac-4922-b033-1cc0efac7e32" ], "x-ms-request-id": [ - "3c38eeb3-4c4a-44c6-aeb4-387d2905805c" + "12a1d62f-19c6-4b02-88c3-e69e5c60dc23" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011533Z:9ad0ce6b-4630-42f4-9647-b4de2d80a633" + "WESTCENTRALUS:20170309T080948Z:e0794127-8fac-4922-b033-1cc0efac7e32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:33 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjOTA1OTI3LWM5OTQtNDU3Yy04ZTEyLTEwMDdlMjhlY2MyNT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZmQzNzA1ZjktYzNhNS00YjU2LWFkMDEtMDM5ZGU2MjdhZWVkP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25\",\r\n \"name\": \"2c905927-c994-457c-8e12-1007e28ecc25\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:15:32.4839717Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed\",\r\n \"name\": \"fd3705f9-c3a5-4b56-ad01-039de627aeed\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:48.4877395Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:52 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "33" + ], "x-ms-correlation-request-id": [ - "d9b88629-124a-4f9a-b5b5-0e922b71f6ca" + "a9894d8a-f0b3-4985-9308-b875cbc54576" ], "x-ms-request-id": [ - "f9d4c5b9-c0ad-4dce-8915-3bf48bc81ce5" + "a24239f8-b143-468b-8a7e-6df4c04e8bc9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14982" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011538Z:d9b88629-124a-4f9a-b5b5-0e922b71f6ca" + "WESTCENTRALUS:20170309T080953Z:a9894d8a-f0b3-4985-9308-b875cbc54576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:38 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjOTA1OTI3LWM5OTQtNDU3Yy04ZTEyLTEwMDdlMjhlY2MyNT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZmQzNzA1ZjktYzNhNS00YjU2LWFkMDEtMDM5ZGU2MjdhZWVkP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25\",\r\n \"name\": \"2c905927-c994-457c-8e12-1007e28ecc25\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:15:32.4839717Z\",\r\n \"endTime\": \"2016-05-18T01:15:41.2284958Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed\",\r\n \"name\": \"fd3705f9-c3a5-4b56-ad01-039de627aeed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:09:48.4877395Z\",\r\n \"endTime\": \"2017-03-09T08:09:56.9765905Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:58 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "12" + ], "x-ms-correlation-request-id": [ - "c9d28f7c-9322-49fb-8374-072ac1a81dba" + "cde7527c-81ae-4e96-910c-46f3a6f4b6c3" ], "x-ms-request-id": [ - "5df5753d-bbbe-4781-8451-9a18929fad58" + "2784dcb7-e67f-45e8-900e-26576c7d928d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14981" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011543Z:c9d28f7c-9322-49fb-8374-072ac1a81dba" + "WESTCENTRALUS:20170309T080958Z:cde7527c-81ae-4e96-910c-46f3a6f4b6c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIwNDc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnNDIxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047\",\r\n \"name\": \"amlws2047\",\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-18T01:15:32.944991Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:41.3133434Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/499d2f8cf7ae49f0b65a20aa08780929/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943\",\r\n \"name\": \"amlws1943\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:49.1859262Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:57.0363932Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e12854abfc8e4ff292386f3818de155a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_07\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5915" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:58 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "19" + ], "x-ms-correlation-request-id": [ - "c62b8c25-0f83-457f-bd81-357cec25453f" + "a6d718c3-3e28-4850-8754-abce82d1c9aa" ], "x-ms-request-id": [ - "50b92f42-e994-450a-9338-ead1d9e6f597" + "cefb7a1d-8a44-455a-adfd-4ece036d536c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14980" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011543Z:c62b8c25-0f83-457f-bd81-357cec25453f" + "WESTCENTRALUS:20170309T080958Z:a6d718c3-3e28-4850-8754-abce82d1c9aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba926d4d-4599-43a0-95e0-84ac334d6585" + "b647fd07-1e90-4f35-829d-a091740d1ad7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371\",\r\n \"name\": \"amlws2371\",\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-18T01:14:40.1965104Z\",\r\n \"modifiedOn\": \"2016-05-18T01:14:50.4134101Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/646597da03b94cbc82d6157ec122f123/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823\",\r\n \"name\": \"amlws5823\",\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-18T01:15:15.0624739Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:26.7025838Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/536534b57c2f4edaa708d5e34bcf66b4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378\",\r\n \"name\": \"amlws6378\",\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-18T01:14:52.8413554Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:09.1947689Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/f87ade0a66074ff1b8e1d618c67a5fcc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163\",\r\n \"name\": \"amlws163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:28.1397481Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:34.213807Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1ae89aa2f984e5aa828d7015f3c94d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297\",\r\n \"name\": \"amlws4297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:12.4691516Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:23.6390019Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17efc65f9f2f4853bd4013a391cadc22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591\",\r\n \"name\": \"amlws7591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:38.5768612Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:45.061854Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a7d335fb9b9463481090eb96763a2e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2815" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:58 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "10" + ], "x-ms-correlation-request-id": [ - "1ffd1f62-2b43-4cbf-84d0-cf75fa307245" + "4c838e0d-45ba-4c7d-a7a0-8990534d21c4" ], "x-ms-request-id": [ - "3876e33a-fb1d-4036-af07-ba6c21e81b3f" + "afd02919-47cb-41ca-83f1-de32b3ea67dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14979" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011544Z:1ffd1f62-2b43-4cbf-84d0-cf75fa307245" + "WESTCENTRALUS:20170309T080958Z:4c838e0d-45ba-4c7d-a7a0-8990534d21c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/webServices?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/webServices?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c04fa085-5e1e-4ce9-9965-bd14602dfa59" + "b9b2dda5-ee22-4190-be29-c82f51cc044d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047\",\r\n \"name\": \"amlws2047\",\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-18T01:15:32.944991Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:41.3133434Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/499d2f8cf7ae49f0b65a20aa08780929/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371\",\r\n \"name\": \"amlws2371\",\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-18T01:14:40.1965104Z\",\r\n \"modifiedOn\": \"2016-05-18T01:14:50.4134101Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/646597da03b94cbc82d6157ec122f123/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823\",\r\n \"name\": \"amlws5823\",\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-18T01:15:15.0624739Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:26.7025838Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/536534b57c2f4edaa708d5e34bcf66b4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378\",\r\n \"name\": \"amlws6378\",\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-18T01:14:52.8413554Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:09.1947689Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/f87ade0a66074ff1b8e1d618c67a5fcc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\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 \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/ritbhatrp/providers/Microsoft.MachineLearning/webServices/rpprodwsmay12\",\r\n \"name\": \"rpprodwsmay12\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-05-12T15:03:25.6659097Z\",\r\n \"modifiedOn\": \"2016-05-12T20:44:07.660223Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/26244534bed443c594abfc45a7efc7b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/ritbhatrp/providers/Microsoft.MachineLearning/webServices/rpprodwsmay12rev3\",\r\n \"name\": \"rpprodwsmay12rev3\",\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-12T21:29:37.4829504Z\",\r\n \"modifiedOn\": \"2016-05-12T22:47:31.0986781Z\",\r\n \"title\": \"Compute Sin\",\r\n \"description\": \"Updated web service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/dd315cf95958462e95485064a55ad947/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"cloudmldemo\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/ritbhatrp/providers/Microsoft.MachineLearning/webServices/rpprodwsmay15\",\r\n \"name\": \"rpprodwsmay15\",\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-15T17:58:58.562987Z\",\r\n \"modifiedOn\": \"2016-05-15T18:25:07.6501717Z\",\r\n \"title\": \"Compute Sin\",\r\n \"description\": \"This web service computes the sin of 4 numbers.\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/732f172858864715b0b4c6ea75c03c0a/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/8db790dc3067484eb232700ce5981584/providers/Microsoft.MachineLearning/webServices/0de910fbd4e247dca2c1515ee988cdd7\",\r\n \"name\": \"0de910fbd4e247dca2c1515ee988cdd7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T02:24:20.096615Z\",\r\n \"modifiedOn\": \"2016-10-13T02:24:37.1756987Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/501c761aed3448a28f4a17b94b1fcc35/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/4033d2d142f7424480760eee6167e65d/providers/Microsoft.MachineLearning/webServices/4bea5465407f4dd9af591d1d5ddcba09\",\r\n \"name\": \"4bea5465407f4dd9af591d1d5ddcba09\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T16:41:03.2098772Z\",\r\n \"modifiedOn\": \"2016-09-20T16:41:25.1044622Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c34ef9cba58340adb909130cd5b37361/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T16:40:07.7791238Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/a1b2e12b9a3d431898d79dd2607557bb/providers/Microsoft.MachineLearning/webServices/58f306dcdb444320864396cd747309f4\",\r\n \"name\": \"58f306dcdb444320864396cd747309f4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T02:04:06.7067589Z\",\r\n \"modifiedOn\": \"2016-10-13T02:04:19.4228918Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05f6a56597744238b89a0aec349d7ed3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassLogReg\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassLogReg\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-17T01:32:47.1553239Z\",\r\n \"modifiedOn\": \"2016-11-17T01:32:59.0403043Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassLogReg\",\r\n \"description\": \"Easy ML Training Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/022e9e0104c047c4adc76ba9c923bc9b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassNeuralNetwork\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassNeuralNetwork\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-17T01:32:46.8915126Z\",\r\n \"modifiedOn\": \"2016-11-17T01:33:41.7802355Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassNeuralNetwork\",\r\n \"description\": \"Easy ML Training Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5ea97feeae2d4d4a9836de620591f425/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassSVM\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassSVM\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-17T01:32:44.7807487Z\",\r\n \"modifiedOn\": \"2016-11-17T01:33:41.0881762Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassSVM\",\r\n \"description\": \"Easy ML Training Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/345697f96864462e98f09390b6ae798d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.18.9.58.17\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.18.9.58.17\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-17T02:11:22.9460799Z\",\r\n \"modifiedOn\": \"2016-11-17T02:11:37.6077313Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.18.9.58.17\",\r\n \"description\": \"Easy ML Predictive Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f08761b9cb1a4e82bcd2e5bc49f5314c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.41.11.226\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.41.11.226\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-18T22:41:13.48844Z\",\r\n \"modifiedOn\": \"2016-11-18T22:41:26.1044708Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.41.11.226\",\r\n \"description\": \"Easy ML Predictive Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2e7f5eb75b7449abba563550a7f5b44/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.44.7.971\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.44.7.971\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-18T22:44:08.6381422Z\",\r\n \"modifiedOn\": \"2016-11-18T22:44:25.9501964Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.44.7.971\",\r\n \"description\": \"Easy ML Predictive Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/741ee7147abe4e0cb13387c37b97a45a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/5b5830ad4fa64d848a166a2e9a81dea2/providers/Microsoft.MachineLearning/webServices/9bf45d5e88e04e67accbe95f7be1ecb0\",\r\n \"name\": \"9bf45d5e88e04e67accbe95f7be1ecb0\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T02:16:40.4329212Z\",\r\n \"modifiedOn\": \"2016-10-13T02:16:55.2451145Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bef294ec81464328bf400cecc14e2c8d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/36885089d2db46f8ac62f1b188a7f97a/providers/Microsoft.MachineLearning/webServices/aa7a4577a10e43c198bbb2557265a620\",\r\n \"name\": \"aa7a4577a10e43c198bbb2557265a620\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-13T02:42:13.8447075Z\",\r\n \"modifiedOn\": \"2016-10-13T02:42:35.8238681Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/76ddd96f9c0c4aa8a8b7e507578815de/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-10-15T02:40:33.5770681Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ApplyMathIris.2016.8.12.17.13.41.110\",\r\n \"name\": \"ApplyMathIris.2016.8.12.17.13.41.110\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T17:14:06.2027788Z\",\r\n \"modifiedOn\": \"2016-08-12T17:18:01.0683259Z\",\r\n \"title\": \"ApplyMath+Ir\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ae48e5f417e34b9ebc281935f88f81ee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohupaidst\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/BasicIris\",\r\n \"name\": \"BasicIris\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-02T18:09:38.1884835Z\",\r\n \"modifiedOn\": \"2016-09-09T02:32:00.8010765Z\",\r\n \"title\": \"Basic Iris\",\r\n \"description\": \"This is Basic Iris and Apply Math\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddf39e1585c64820a8fd6bbd0130f294/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Blank1\",\r\n \"name\": \"Blank1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-06-15T23:47:43.026513Z\",\r\n \"modifiedOn\": \"2016-06-15T23:47:51.9682585Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e0b1a1452e9b437da2a5ef0d884bfe3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/bohu002\",\r\n \"name\": \"bohu002\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-25T16:31:13.9005486Z\",\r\n \"modifiedOn\": \"2016-05-25T16:31:23.6423984Z\",\r\n \"title\": \"Sample 1\",\r\n \"description\": \"Sample 1 description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8d8c31b29b3644aaaf5ee539385a039c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/Workspaces/bohuws01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/c7e0727c734944feb5884648543adddd/providers/Microsoft.MachineLearning/webServices/c057f9babdeb4460860113e65cb894b3\",\r\n \"name\": \"c057f9babdeb4460860113e65cb894b3\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T02:30:04.0384935Z\",\r\n \"modifiedOn\": \"2016-10-13T02:30:11.2758384Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f56ecc9462de4fe6bc858e654946107d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ClusteringGroupIrisDagaldExp1\",\r\n \"name\": \"ClusteringGroupIrisDagaldExp1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-26T20:48:48.8508665Z\",\r\n \"modifiedOn\": \"2016-06-09T00:05:00.6095791Z\",\r\n \"description\": \"Clustering: Group iris data [Predictive Exp.] - Copy - Copy - Copy\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1563a7fb529944f68b1911d4f27c2bfd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ClusteringGroupIrisData\",\r\n \"name\": \"ClusteringGroupIrisData\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-05-25T23:09:42.8888466Z\",\r\n \"modifiedOn\": \"2016-05-25T23:09:56.2338167Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/703b6b0276f94f439d0ff2637e96576d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebService13adff2d-6a24-4874-a6f8-8949a8ce8a5b/providers/Microsoft.MachineLearning/webServices/comp-WebService13adff2d-6a24-4874-a6f8-8949a8ce8a5b\",\r\n \"name\": \"comp-WebService13adff2d-6a24-4874-a6f8-8949a8ce8a5b\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T18:36:10.6339349Z\",\r\n \"modifiedOn\": \"2016-09-12T18:36:21.9299583Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8523c5afdd464644b3bd727bf35f5d24/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T18:35:06.5899999Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebService1dfcb5d7-b562-4942-bf53-504684fe6d5e/providers/Microsoft.MachineLearning/webServices/comp-WebService1dfcb5d7-b562-4942-bf53-504684fe6d5e\",\r\n \"name\": \"comp-WebService1dfcb5d7-b562-4942-bf53-504684fe6d5e\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T18:07:39.3137682Z\",\r\n \"modifiedOn\": \"2016-09-12T18:07:58.7757867Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/47a73499edea441aa15a2c28c7633c2c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T18:06:33.9377547Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebService4590b175-d39d-432d-b78a-42157d2be771/providers/Microsoft.MachineLearning/webServices/comp-WebService4590b175-d39d-432d-b78a-42157d2be771\",\r\n \"name\": \"comp-WebService4590b175-d39d-432d-b78a-42157d2be771\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T17:52:10.1966927Z\",\r\n \"modifiedOn\": \"2016-09-12T17:52:20.3018251Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/35e3e23818634538bdb49e7acabd6690/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T17:51:05.2098048Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebService611389c4-615f-4c8a-af37-d5b0d254af39/providers/Microsoft.MachineLearning/webServices/comp-WebService611389c4-615f-4c8a-af37-d5b0d254af39\",\r\n \"name\": \"comp-WebService611389c4-615f-4c8a-af37-d5b0d254af39\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T17:29:49.6616271Z\",\r\n \"modifiedOn\": \"2016-09-12T17:30:02.4451462Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9819ed28adb2483eb24d992f822c3540/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T17:28:45.9017332Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebServiceabb68702-20c5-45d7-8535-2dee6dfedff2/providers/Microsoft.MachineLearning/webServices/comp-WebServiceabb68702-20c5-45d7-8535-2dee6dfedff2\",\r\n \"name\": \"comp-WebServiceabb68702-20c5-45d7-8535-2dee6dfedff2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T18:30:13.1729136Z\",\r\n \"modifiedOn\": \"2016-09-12T18:30:28.3481771Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e7c3e444ec764074abf459cb98dacb1c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T18:29:12.964001Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebServiceb34d0829-3017-421c-9eba-d7df5be3ecac/providers/Microsoft.MachineLearning/webServices/comp-WebServiceb34d0829-3017-421c-9eba-d7df5be3ecac\",\r\n \"name\": \"comp-WebServiceb34d0829-3017-421c-9eba-d7df5be3ecac\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T16:22:21.660142Z\",\r\n \"modifiedOn\": \"2016-09-12T16:22:38.7471555Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b9805fd27b19425cb507a20b646d8e1e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T16:21:18.2711537Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebServicecfe352b1-8a38-47ee-addb-0cecc553e80d/providers/Microsoft.MachineLearning/webServices/comp-WebServicecfe352b1-8a38-47ee-addb-0cecc553e80d\",\r\n \"name\": \"comp-WebServicecfe352b1-8a38-47ee-addb-0cecc553e80d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T17:33:27.8961413Z\",\r\n \"modifiedOn\": \"2016-09-12T17:33:42.2709069Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c3eead09bc84999a6a21774aa50c2f5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T17:32:26.2130173Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebServiceefc2f7f3-ccd0-4109-84f1-304cf746bf79/providers/Microsoft.MachineLearning/webServices/comp-WebServiceefc2f7f3-ccd0-4109-84f1-304cf746bf79\",\r\n \"name\": \"comp-WebServiceefc2f7f3-ccd0-4109-84f1-304cf746bf79\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T17:37:14.3249828Z\",\r\n \"modifiedOn\": \"2016-09-12T17:37:27.2691869Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/497a9caa97954e0dac2a5b694890a7cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T17:36:10.557103Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/d2f5c9ba408d43c2932aa7fa960bafc7/providers/Microsoft.MachineLearning/webServices/d8838896444e439d962bfb9267c0356c\",\r\n \"name\": \"d8838896444e439d962bfb9267c0356c\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T16:35:37.2737502Z\",\r\n \"modifiedOn\": \"2016-09-20T16:35:55.9014244Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f48cc5e7e039470fa6379409cfa86a1e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T16:34:41.6847923Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/DagaldExpSampleData1\",\r\n \"name\": \"DagaldExpSampleData1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-13T21:11:58.3023516Z\",\r\n \"modifiedOn\": \"2016-06-13T21:34:12.2513068Z\",\r\n \"title\": \"\",\r\n \"description\": \"Clustering: Group iris data [Predictive Exp.]\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/327dddd2255c438f9c65562b440f5acf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/dagaldtest1\",\r\n \"name\": \"dagaldtest1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-07T22:20:00.7555929Z\",\r\n \"modifiedOn\": \"2016-06-07T22:20:11.3628485Z\",\r\n \"description\": \"Clustering: Group iris data [Predictive Exp.]\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/00289486e6b5486398acbbfc919ed8fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_ca81f7a4a2cf4bf9a2f309c892584731/providers/Microsoft.MachineLearning/webServices/E2ETest_02b464c95a2f4660aa00d158250a38d7\",\r\n \"name\": \"E2ETest_02b464c95a2f4660aa00d158250a38d7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:25:26.0097925Z\",\r\n \"modifiedOn\": \"2016-09-18T23:25:35.8475362Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2d2e97cbc04e4b7d9610274fb1aa2549/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:24:31.2240624Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_ac42b30c8bbf4f2dbb55dbb4cd948818/providers/Microsoft.MachineLearning/webServices/E2ETest_0c89b18efe0c446fb9c7a4fbb6c06812\",\r\n \"name\": \"E2ETest_0c89b18efe0c446fb9c7a4fbb6c06812\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:23:47.6096007Z\",\r\n \"modifiedOn\": \"2016-09-19T03:24:07.3632974Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5b1757fa62a64c31ba4f0379a1ef732f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:22:52.9706428Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_1580eef9407b4e7096c1208e5bb2d389/providers/Microsoft.MachineLearning/webServices/E2ETest_1ad43abd0e884a2f9c4894b5e8584e96\",\r\n \"name\": \"E2ETest_1ad43abd0e884a2f9c4894b5e8584e96\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:41:55.5301874Z\",\r\n \"modifiedOn\": \"2016-09-18T23:42:07.26711Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/026cb08b5743472f8be95385d2d35f09/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:41:00.7776324Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_88f625e065444bfdae9821a4bdce7975/providers/Microsoft.MachineLearning/webServices/E2ETest_1d66290745f54bb2a9876983c0a0abb4\",\r\n \"name\": \"E2ETest_1d66290745f54bb2a9876983c0a0abb4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T03:16:06.0171691Z\",\r\n \"modifiedOn\": \"2016-09-15T03:16:19.3119375Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/59e0974b5ce34dfcacebc3a8b2816ee3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T03:15:05.5965615Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_8fe236fd447c4974bc471d0bdc3c037a/providers/Microsoft.MachineLearning/webServices/E2ETest_22df5deb56f6493b939e146d0006e6cc\",\r\n \"name\": \"E2ETest_22df5deb56f6493b939e146d0006e6cc\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T19:28:29.8674104Z\",\r\n \"modifiedOn\": \"2016-09-15T19:28:43.7987559Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0b2367865d11455fa51cb88812f0af3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T19:27:29.5561126Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_9751fd988960430c8579a2c1fa3b713a/providers/Microsoft.MachineLearning/webServices/E2ETest_2ac71bba808e495eb6a4c4886614f847\",\r\n \"name\": \"E2ETest_2ac71bba808e495eb6a4c4886614f847\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:25:06.9221743Z\",\r\n \"modifiedOn\": \"2016-09-18T23:25:17.0933639Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0ebf2744f61d41ccbb2e23cd20e93af7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:24:11.6077667Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_6bfa0b99e36f45d6ad9e30f9e183c51d/providers/Microsoft.MachineLearning/webServices/E2ETest_2fda53f393854bbfb74ed5b229104e1b\",\r\n \"name\": \"E2ETest_2fda53f393854bbfb74ed5b229104e1b\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:16:18.6198046Z\",\r\n \"modifiedOn\": \"2016-09-18T23:16:30.652075Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/00370ec24e6e465a94def5ff2a1cb433/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:15:23.1181795Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_68bb0546661d43c486f843af3a1979a7/providers/Microsoft.MachineLearning/webServices/E2ETest_49bfd26ed57f4e6a940ed00d7a5a8cd1\",\r\n \"name\": \"E2ETest_49bfd26ed57f4e6a940ed00d7a5a8cd1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:10:02.6529727Z\",\r\n \"modifiedOn\": \"2016-09-18T23:10:12.9497569Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/042f640a540046d9b0889e1395553563/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:09:07.9577267Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_90ce63b2fe4341b1a29489a63ce9b41a/providers/Microsoft.MachineLearning/webServices/E2ETest_4f944b4054e54420820486da234391ae\",\r\n \"name\": \"E2ETest_4f944b4054e54420820486da234391ae\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:25:36.2669797Z\",\r\n \"modifiedOn\": \"2016-09-16T00:25:52.3471896Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c8c7d8177cf54161b10c0f0882fb39dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T00:24:31.7913354Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_a6f072f11532472fa02b5d1776f8f39b/providers/Microsoft.MachineLearning/webServices/E2ETest_563de939a4094ac888c305d029de934e\",\r\n \"name\": \"E2ETest_563de939a4094ac888c305d029de934e\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T19:30:06.7908368Z\",\r\n \"modifiedOn\": \"2016-09-15T19:30:24.6199332Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a5c0baf52ba8412f9ab149c2d99f33ab/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T19:29:05.1291271Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_37d526ba05124adbb5123c6f853017f4/providers/Microsoft.MachineLearning/webServices/E2ETest_59103a79d5fa4670a44ead01a8f6bbfa\",\r\n \"name\": \"E2ETest_59103a79d5fa4670a44ead01a8f6bbfa\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:51:26.1712886Z\",\r\n \"modifiedOn\": \"2016-09-15T00:51:36.7697035Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9327d8385cd342b8964cf2bff154b04f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:50:24.4564166Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_0bc56ea1557643b0b8dfa46f3c1df246/providers/Microsoft.MachineLearning/webServices/E2ETest_59418539683a4f49aad61351050e7c8e\",\r\n \"name\": \"E2ETest_59418539683a4f49aad61351050e7c8e\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:44:53.4092866Z\",\r\n \"modifiedOn\": \"2016-09-16T00:45:08.001273Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2167fc6793bf491aa3fb54ef3128ff92/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T00:43:50.6709933Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_aea53bac49b947caa0933710da9a5640/providers/Microsoft.MachineLearning/webServices/E2ETest_5e04f3210e9f4426b3a2c11ec5da3ee5\",\r\n \"name\": \"E2ETest_5e04f3210e9f4426b3a2c11ec5da3ee5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T22:38:33.9152745Z\",\r\n \"modifiedOn\": \"2016-09-18T22:38:46.9972075Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/96e5cf2c5ae54240935529076a112b2f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T22:37:40.6815547Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_8f5b0ff7c7a345cfbef933ed7438cffd/providers/Microsoft.MachineLearning/webServices/E2ETest_653f61356f584af2b3dedd80a737f964\",\r\n \"name\": \"E2ETest_653f61356f584af2b3dedd80a737f964\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:43:32.1515328Z\",\r\n \"modifiedOn\": \"2016-09-15T00:43:50.5750617Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6940c84afb124e759178be246d7d66dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:42:31.5394752Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_12c5c69891814536915ec53abea9ed70/providers/Microsoft.MachineLearning/webServices/E2ETest_66075a1a799b42f2b75edaff77710a7b\",\r\n \"name\": \"E2ETest_66075a1a799b42f2b75edaff77710a7b\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T00:45:38.9430586Z\",\r\n \"modifiedOn\": \"2016-09-19T00:45:52.2798276Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/658b110eabc643bb8e6bdf6d779f2cb0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T00:44:43.8739023Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_bc0d94f9879942aabbfc6dac13dd1df3/providers/Microsoft.MachineLearning/webServices/E2ETest_6795ee23c9cd463ea243accf16b404c5\",\r\n \"name\": \"E2ETest_6795ee23c9cd463ea243accf16b404c5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:29:28.4663453Z\",\r\n \"modifiedOn\": \"2016-09-15T00:29:44.4576052Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/43e931dccae546b790b1f35f1c13882f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:28:19.2651137Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_b353d2514c8642ab9e8f47f4811b235b/providers/Microsoft.MachineLearning/webServices/E2ETest_681d0370b0a94c439a5d69446cb688a5\",\r\n \"name\": \"E2ETest_681d0370b0a94c439a5d69446cb688a5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T02:54:35.7755441Z\",\r\n \"modifiedOn\": \"2016-09-19T02:54:48.1380177Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/35295ccaf17546339878510848fa7e17/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T02:53:42.981477Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_c8d3a4123d554fb79fea5605ff933960/providers/Microsoft.MachineLearning/webServices/E2ETest_6e25d2f556ae48d793923d4286c104a6\",\r\n \"name\": \"E2ETest_6e25d2f556ae48d793923d4286c104a6\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:09:45.7692501Z\",\r\n \"modifiedOn\": \"2016-09-18T23:09:53.7550537Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e147768615a24fc5b64d46dddfc2a620/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:08:49.8402472Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_3ca910b3aac94bf4a5812cb040545625/providers/Microsoft.MachineLearning/webServices/E2ETest_72d541d59f714f1fbe8c9a1f92c4b2f5\",\r\n \"name\": \"E2ETest_72d541d59f714f1fbe8c9a1f92c4b2f5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T02:40:23.5961844Z\",\r\n \"modifiedOn\": \"2016-09-15T02:40:33.6727767Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/15c78a728da5495e82b2570b319c3b7f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T02:39:20.8261812Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_102770cf85c64d1aaf66805a72c38a9e/providers/Microsoft.MachineLearning/webServices/E2ETest_8f7bc6b84efa4379b75c23eb2687005f\",\r\n \"name\": \"E2ETest_8f7bc6b84efa4379b75c23eb2687005f\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:28:42.0234968Z\",\r\n \"modifiedOn\": \"2016-09-16T00:28:55.0060957Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/403bfaf677464e77ae603324fb5fbfee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T00:27:41.0442506Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_5c534d2737624867b1da1499335a6d33/providers/Microsoft.MachineLearning/webServices/E2ETest_9522504437704140bedc6fa742eb1f31\",\r\n \"name\": \"E2ETest_9522504437704140bedc6fa742eb1f31\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:37:45.0913525Z\",\r\n \"modifiedOn\": \"2016-09-15T00:37:53.8089723Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b03a70b31946417294d4fc7edace4d73/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:36:41.3630746Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_f80293c9eaed4cdcab4905b3bdce92d8/providers/Microsoft.MachineLearning/webServices/E2ETest_9881d2ad932f4131bccf68605cce2b8a\",\r\n \"name\": \"E2ETest_9881d2ad932f4131bccf68605cce2b8a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T00:15:06.6381352Z\",\r\n \"modifiedOn\": \"2016-09-19T00:15:20.9569037Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3a9b4e8805ba4ccb81b94f4d3b167154/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T00:14:12.0837726Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_76dfe7e74001455f9a13c6b732de7715/providers/Microsoft.MachineLearning/webServices/E2ETest_9e90629dcf814d52be7ce2c1932799c9\",\r\n \"name\": \"E2ETest_9e90629dcf814d52be7ce2c1932799c9\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:24:21.8212843Z\",\r\n \"modifiedOn\": \"2016-09-15T00:24:37.0660417Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e1b328f5f44d4578bc9d4bebe3071431/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:23:07.9148995Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_7e95029249554371b2914de5310bfda6/providers/Microsoft.MachineLearning/webServices/E2ETest_a1c3693a438843e4960dc39b1cd36dfb\",\r\n \"name\": \"E2ETest_a1c3693a438843e4960dc39b1cd36dfb\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:40:54.4417271Z\",\r\n \"modifiedOn\": \"2016-09-18T23:41:07.4809337Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/619bf17771b94338963c2b4d7eceeeef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:39:59.594098Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_bd79240679804516be3796ba8f357b31/providers/Microsoft.MachineLearning/webServices/E2ETest_c22e53f14f9541f2899693e1e6f0c47a\",\r\n \"name\": \"E2ETest_c22e53f14f9541f2899693e1e6f0c47a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T02:13:47.8785994Z\",\r\n \"modifiedOn\": \"2016-09-15T02:13:58.607455Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/72012cf68635467da8ffbcc93bf534fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T02:12:45.8567478Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_05dced965bb34a6388f8a2b1f7903140/providers/Microsoft.MachineLearning/webServices/E2ETest_c3ba96b883f541a38cacc61869be6b7a\",\r\n \"name\": \"E2ETest_c3ba96b883f541a38cacc61869be6b7a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T15:01:17.6993085Z\",\r\n \"modifiedOn\": \"2016-09-15T15:01:33.8033086Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/467535208d8943d78919e1eb2ca96aad/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T15:00:15.8811014Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_f0523f2e4f7d4ef5aa9309c9eb139f65/providers/Microsoft.MachineLearning/webServices/E2ETest_cddd0b4b497e40acae5c7d9a01580a0d\",\r\n \"name\": \"E2ETest_cddd0b4b497e40acae5c7d9a01580a0d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T01:05:28.9308962Z\",\r\n \"modifiedOn\": \"2016-09-19T01:05:43.6357528Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4584eb3cef774db995c27adb85e70121/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T01:04:35.3303673Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_fec44c19a9234595ab3e8c0b24d4f7b3/providers/Microsoft.MachineLearning/webServices/E2ETest_ce2fb32e41ec47bcb337e6c51fa53b6e\",\r\n \"name\": \"E2ETest_ce2fb32e41ec47bcb337e6c51fa53b6e\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T00:21:46.4062362Z\",\r\n \"modifiedOn\": \"2016-09-19T00:21:56.4897507Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42914e4585124ec59ccdb6d42103536b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T00:20:50.249844Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_71d380b075d14878beb5a08bfbb2b638/providers/Microsoft.MachineLearning/webServices/E2ETest_d072185dc5e446adbb524404e52c68be\",\r\n \"name\": \"E2ETest_d072185dc5e446adbb524404e52c68be\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T22:38:56.3169298Z\",\r\n \"modifiedOn\": \"2016-09-18T22:39:04.8873141Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42cd8e78eb3e453aa87956728f14119f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T22:38:01.0034789Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_b6b47fbb7738457e9d2bff36bda3b9bd/providers/Microsoft.MachineLearning/webServices/E2ETest_d9c282ce2dad457a94bf78ba6c31c184\",\r\n \"name\": \"E2ETest_d9c282ce2dad457a94bf78ba6c31c184\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:16:54.8064986Z\",\r\n \"modifiedOn\": \"2016-09-18T23:17:07.8030486Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/13a4afef404a4b4ba59bac784082f230/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:15:59.4322831Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_bfa1d68ff3af426caa46e988c93bb189/providers/Microsoft.MachineLearning/webServices/E2ETest_d9dc5b8ff92e4b05bb1290af36abcb46\",\r\n \"name\": \"E2ETest_d9dc5b8ff92e4b05bb1290af36abcb46\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T14:42:09.1175298Z\",\r\n \"modifiedOn\": \"2016-09-15T14:42:21.3127356Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b852202dc2d48e08d9e42bbc9dcb787/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T14:41:06.3562644Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ExampleExperiment1\",\r\n \"name\": \"ExampleExperiment1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-03T21:29:13.7340516Z\",\r\n \"modifiedOn\": \"2016-06-22T23:54:20.4144503Z\",\r\n \"title\": \"\",\r\n \"description\": \"Sleeping Beauty\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/401ecd3e44c14bb0ba11d0fcefbbd9fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experiment2\",\r\n \"name\": \"Experiment2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdOn\": \"2016-05-25T22:20:22.0760509Z\",\r\n \"modifiedOn\": \"2016-05-25T22:51:45.0835601Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3078fd5e157a4994b9e39de58c941c95/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experiment.2016.11.23.22.37.47.650\",\r\n \"name\": \"Experiment.2016.11.23.22.37.47.650\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-23T22:39:43.6242972Z\",\r\n \"modifiedOn\": \"2016-11-23T22:39:56.5816105Z\",\r\n \"title\": \"?Experiment_:.üū.\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c89a38ea6b644a1ca28fbc712b8cc972/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.11.19.0.1.1.653\",\r\n \"name\": \"Experimentcreate.2016.11.19.0.1.1.653\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-19T00:01:11.7742797Z\",\r\n \"modifiedOn\": \"2016-11-19T00:01:28.9646629Z\",\r\n \"title\": \"Experiment created on ‎11‎/‎18‎/‎2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7e9e5280bfd8463285097172d75567fc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/stcob/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.11.2.14.46.59.635\",\r\n \"name\": \"Experimentcreate.2016.11.2.14.46.59.635\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-02T14:47:14.7762133Z\",\r\n \"modifiedOn\": \"2016-11-18T20:28:48.2084076Z\",\r\n \"title\": \"Experiment created on 10/5/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9d5ddcbb71d74233976c0f4eb3cee3cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stcobstorage\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.12.1.18.29.32.851\",\r\n \"name\": \"Experimentcreate.2016.12.1.18.29.32.851\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-12-01T18:29:54.3058603Z\",\r\n \"modifiedOn\": \"2016-12-01T18:30:59.1811573Z\",\r\n \"title\": \"Experiment created on 12/1/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ae7d568887654c01bee88e2e1d7a5778/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.18.1.8.19.953\",\r\n \"name\": \"Experimentcreate.2016.8.18.1.8.19.953\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-18T01:08:58.1162649Z\",\r\n \"modifiedOn\": \"2016-08-18T01:10:10.0194862Z\",\r\n \"title\": \"Experiment created on 8/17/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a2c6f956d6764429be8c239afe5244b6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.22.23.31.9.14\",\r\n \"name\": \"Experimentcreate.2016.8.22.23.31.9.14\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-22T23:31:19.8579263Z\",\r\n \"modifiedOn\": \"2016-09-02T17:58:42.1277686Z\",\r\n \"title\": \"Basic Iris\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/67cf96a8ef9240c5a6f6d6567f24dfe3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.24.22.5.46.344\",\r\n \"name\": \"Experimentcreate.2016.8.24.22.5.46.344\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-24T22:05:53.0233638Z\",\r\n \"modifiedOn\": \"2016-08-24T22:08:48.519267Z\",\r\n \"title\": \"Experiment created on 8/24/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd88019edd144f9dba897b649f81f480/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/ragarg/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.26.19.16.58.310\",\r\n \"name\": \"Experimentcreate.2016.8.26.19.16.58.310\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-26T19:19:46.3785456Z\",\r\n \"modifiedOn\": \"2016-08-30T19:28:32.342162Z\",\r\n \"title\": \"Experiment created on 8/26/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9ebd6df339704b34a4b095902dad95a9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg1\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.30.18.37.55.98\",\r\n \"name\": \"Experimentcreate.2016.8.30.18.37.55.98\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-30T18:38:09.504307Z\",\r\n \"modifiedOn\": \"2016-08-30T18:38:22.1834392Z\",\r\n \"title\": \"Experiment created on 8/29/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/976d7d15567644f8b9b7c07b7abfce08/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.9.23.18.59.37.375\",\r\n \"name\": \"Experimentcreate.2016.9.23.18.59.37.375\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-23T18:59:55.7960818Z\",\r\n \"modifiedOn\": \"2016-09-23T19:00:06.9819308Z\",\r\n \"title\": \"Experiment created on 9/23/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ffb085e3c3b74175b7caaf1bedad1128/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.9.23.23.48.26.682\",\r\n \"name\": \"Experimentcreate.2016.9.23.23.48.26.682\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-23T23:48:36.8548918Z\",\r\n \"modifiedOn\": \"2016-09-23T23:48:47.4478694Z\",\r\n \"title\": \"Experiment created on 9/23/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cfafe0f6e2eb48b78d4d78211cca1717/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.9.6.21.48.7.915\",\r\n \"name\": \"Experimentcreate.2016.9.6.21.48.7.915\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-06T21:48:17.7770056Z\",\r\n \"modifiedOn\": \"2016-09-06T21:48:27.2667032Z\",\r\n \"title\": \"Experiment created on 9/6/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a98e6e87378c4dfe873e0e2a48cab512/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.9.6.22.46.22.321\",\r\n \"name\": \"Experimentcreate.2016.9.6.22.46.22.321\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-06T22:46:34.3642649Z\",\r\n \"modifiedOn\": \"2016-09-06T22:46:46.4004856Z\",\r\n \"title\": \"Experiment created on 9/6/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/37a2f8b2b8f947bdad15aeb6f8408b96/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2017.1.23.21.59.6.262\",\r\n \"name\": \"Experimentcreate.2017.1.23.21.59.6.262\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-01-23T21:59:22.7450703Z\",\r\n \"modifiedOn\": \"2017-02-02T18:54:10.8441724Z\",\r\n \"title\": \"Experiment created on 1/23/2017\",\r\n \"description\": \"asdf\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9822f9384d7a4791a2adbeeb88e036a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2017.1.5.18.12.9.661\",\r\n \"name\": \"Experimentcreate.2017.1.5.18.12.9.661\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-01-05T18:12:30.0882438Z\",\r\n \"modifiedOn\": \"2017-01-05T18:12:40.115591Z\",\r\n \"title\": \"Experiment created on 12/21/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3f648ab949b7493dbfd3b5e2d069056a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ExperimentDagald20160526\",\r\n \"name\": \"ExperimentDagald20160526\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-26T23:23:53.3927919Z\",\r\n \"modifiedOn\": \"2016-05-26T23:24:02.763472Z\",\r\n \"description\": \"Experiment created on 5/26/2016\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/54704f0f55f249cb9998bf8e1e215aca/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/FreshDemoWorks\",\r\n \"name\": \"FreshDemoWorks\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T00:01:56.1670966Z\",\r\n \"modifiedOn\": \"2016-08-12T00:23:23.4783657Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8fb882d2642f4281b3f016b5b2b22355/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/FreshDemoWorks2\",\r\n \"name\": \"FreshDemoWorks2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T00:21:55.6831635Z\",\r\n \"modifiedOn\": \"2016-08-12T00:24:01.9817038Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ef625796b00f4febb7b39273e299f221/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/RitBhat/providers/Microsoft.MachineLearning/webServices/gatewaytest1\",\r\n \"name\": \"gatewaytest1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-30T00:37:10.9246711Z\",\r\n \"modifiedOn\": \"2016-09-30T00:37:31.4615936Z\",\r\n \"title\": \"Two class average perceptron-0.85 -Accuracy : 76% [Predictive Exp.]\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/85e765fb77444c9eafa0f3141a6a2b5b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"mlritbhat\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/RitBhat/providers/Microsoft.MachineLearning/webServices/gatewaytest2\",\r\n \"name\": \"gatewaytest2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-30T00:40:12.3429169Z\",\r\n \"modifiedOn\": \"2016-09-30T00:40:25.3980277Z\",\r\n \"title\": \"Two class average perceptron-0.85 -Accuracy : 76% [Predictive Exp.]\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6f7b90f32e414ad59da6a4db6fcc333c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"mlritbhat\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/GroupIrisWebService\",\r\n \"name\": \"GroupIrisWebService\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-03T21:15:13.5015036Z\",\r\n \"modifiedOn\": \"2016-06-03T21:15:27.3890877Z\",\r\n \"description\": \"Clustering: Group iris data [Predictive Exp.]\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/21a7289ecf5543a78252b17f33a8e8a3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/IcM23294387.2016.9.20.21.6.53.585\",\r\n \"name\": \"IcM23294387.2016.9.20.21.6.53.585\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T21:07:03.801298Z\",\r\n \"modifiedOn\": \"2016-09-22T21:12:35.277831Z\",\r\n \"title\": \"IcM 23294387\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a7c3f0673dc646939b358dd9a5e80c5e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/IntEnum\",\r\n \"name\": \"IntEnum\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T18:17:14.6336685Z\",\r\n \"modifiedOn\": \"2016-10-13T18:17:18.5250466Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ccb81dfd05214bdb961759f2d30dd84c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/IntEnum-1\",\r\n \"name\": \"IntEnum-1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-21T22:21:28.6560589Z\",\r\n \"modifiedOn\": \"2017-01-25T00:02:13.0260134Z\",\r\n \"title\": \"Experiment created on 10/6/2016\",\r\n \"description\": \"egtwqetgasdgf\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77b78c4e7ab24917bbe0cd1a9eccc974/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/IntEnumWorkingHo.2016.10.14.17.45.21.361\",\r\n \"name\": \"IntEnumWorkingHo.2016.10.14.17.45.21.361\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-14T17:45:35.9634973Z\",\r\n \"modifiedOn\": \"2016-10-14T17:52:01.5150987Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1fb574a8fe6d430db8f63be5727b5ef0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/IntEnumWorkingHo.2016.10.14.17.55.8.146\",\r\n \"name\": \"IntEnumWorkingHo.2016.10.14.17.55.8.146\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-14T17:55:17.5037268Z\",\r\n \"modifiedOn\": \"2016-10-14T18:03:46.257752Z\",\r\n \"title\": \"IntEnum - WorkingHoursPerWeek\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bab399d3061543c7bf28096c635b48f7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/iristest0\",\r\n \"name\": \"iristest0\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-07-21T22:13:21.9119586Z\",\r\n \"modifiedOn\": \"2016-08-12T00:24:23.9800414Z\",\r\n \"title\": \"iristest0\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/994faeb607a84452a26f1dd58d689f78/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Multiinout.2016.9.30.23.9.37.815\",\r\n \"name\": \"Multiinout.2016.9.30.23.9.37.815\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-30T23:09:47.6377639Z\",\r\n \"modifiedOn\": \"2016-09-30T23:10:06.8237363Z\",\r\n \"title\": \"Multi in/out\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ebd4d3a41cbd499b840d9a43c6ae91c7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/multiinoutglobal.2016.10.25.0.32.19.576\",\r\n \"name\": \"multiinoutglobal.2016.10.25.0.32.19.576\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-25T00:32:29.513082Z\",\r\n \"modifiedOn\": \"2016-10-25T00:38:50.4921823Z\",\r\n \"title\": \"multi in/out global\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/74b004a9d2e24bf28e2b1642b7a71936/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/NameAboutToChangeExp\",\r\n \"name\": \"NameAboutToChangeExp\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-07-05T23:29:12.7801059Z\",\r\n \"modifiedOn\": \"2016-07-25T22:22:12.0003026Z\",\r\n \"title\": \"namechange\",\r\n \"description\": \"Sample 1: Download dataset from UCI: Adult 2 class dataset\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c02d21786364ee6a61f371d55d2b175/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/NeuralNetwork2hi.2016.7.20.18.20.9.723\",\r\n \"name\": \"NeuralNetwork2hi.2016.7.20.18.20.9.723\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-07-20T18:20:21.4407616Z\",\r\n \"modifiedOn\": \"2016-07-20T18:20:52.5238428Z\",\r\n \"title\": \"Neural Network: 2 hidden layers [Predictive Exp.]\",\r\n \"description\": \"This experiment demonstrates the usage of the 'Multiclass Neural Network' module to train neural network which is defined in Net# language.\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2dd202239c024d5b89eb7b696d66a284/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/KIR-RG/providers/Microsoft.MachineLearning/webServices/NoWebServiceInpu.2016.10.5.0.13.29.7\",\r\n \"name\": \"NoWebServiceInpu.2016.10.5.0.13.29.7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-05T00:14:13.1250837Z\",\r\n \"modifiedOn\": \"2016-10-05T00:17:50.7078988Z\",\r\n \"title\": \"No Web Service Input\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a52b4ee8099f4a73bf1127a9c821212d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"kirst\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Nullvaluesontest.2016.12.22.21.1.17.742\",\r\n \"name\": \"Nullvaluesontest.2016.12.22.21.1.17.742\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-12-22T21:01:31.1150052Z\",\r\n \"modifiedOn\": \"2016-12-22T21:12:01.8584519Z\",\r\n \"title\": \"Null values on test data\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c428b6935fe74d4c86b957b53ec3268c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/OnlyImportExportInputOutput\",\r\n \"name\": \"OnlyImportExportInputOutput\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-09-15T06:30:51.8492391Z\",\r\n \"modifiedOn\": \"2016-09-15T06:30:57.5834948Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eccd2fe7099d427b9b8516869c9be87c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/othertest\",\r\n \"name\": \"othertest\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-12-22T22:00:40.5375001Z\",\r\n \"modifiedOn\": \"2016-12-22T22:02:20.2517355Z\",\r\n \"title\": \"Experiment created on 12/22/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b57e6c72d6e4354b99447ac8db31df2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/randomTest002\",\r\n \"name\": \"randomTest002\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2017-02-23T23:05:59.8904402Z\",\r\n \"modifiedOn\": \"2017-02-23T23:07:53.8210203Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8c4c06ee0a224becba415ce9c678a25b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/recomdendDagaldTest\",\r\n \"name\": \"recomdendDagaldTest\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-17T22:41:13.5628682Z\",\r\n \"modifiedOn\": \"2016-06-18T00:22:15.509789Z\",\r\n \"title\": \"\",\r\n \"description\": \"Recommender: Restaurant ratings [Predictive Exp.]\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b7047b9dd05d47df8a69b1536f8496d8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_0f2b77d20b5b459498c5ebb084769851\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_0f2b77d20b5b459498c5ebb084769851\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T23:37:51.5291834Z\",\r\n \"modifiedOn\": \"2016-09-19T23:38:03.1887769Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0ee16c7fed294346900aed59c4875310/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T23:36:55.0093892Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_1b24980a529b424daf77e104eb487f05\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_1b24980a529b424daf77e104eb487f05\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T16:57:34.1202086Z\",\r\n \"modifiedOn\": \"2016-09-16T16:57:45.7041185Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/26c55594b41c40148559036c58f42456/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T16:57:28.6251548Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_385449715f694403868de227c69523da\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_385449715f694403868de227c69523da\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:10:12.4716456Z\",\r\n \"modifiedOn\": \"2016-09-16T20:10:23.2243498Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/40fc7d90fc9e4d4cac4a83ac6ab3cf0a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T20:10:07.3498507Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_40db6a90d9c44b1ba71e795b1a2699ac\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_40db6a90d9c44b1ba71e795b1a2699ac\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T15:47:54.6483259Z\",\r\n \"modifiedOn\": \"2016-09-20T15:48:09.7302502Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8ce8a35a5ea44a5a90f692a5c3587819/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T15:47:00.4786955Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_4afe99dbd1a64953837c85a09294d8b6\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_4afe99dbd1a64953837c85a09294d8b6\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T05:02:12.0847329Z\",\r\n \"modifiedOn\": \"2016-09-19T05:02:29.0036355Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60832b681963424086914643a3d7707b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T05:02:05.7285298Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_529d3f43bda54faab62ff57bca06495d\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_529d3f43bda54faab62ff57bca06495d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:47:05.7182908Z\",\r\n \"modifiedOn\": \"2016-09-20T14:47:15.6192124Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a2efaaa23ae2446988ce661508b1d689/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:46:09.1415794Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_5f83e4fe9a224b81a4071c19d51a21d7\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_5f83e4fe9a224b81a4071c19d51a21d7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T05:23:18.5623869Z\",\r\n \"modifiedOn\": \"2016-09-19T05:23:29.3188033Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/333a0b6f10dc4d96aed2d3840d0f3df3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T05:23:12.9428163Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_60da1984f9fb4de3b7d53c11a7d3be4a\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_60da1984f9fb4de3b7d53c11a7d3be4a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:01:43.9811401Z\",\r\n \"modifiedOn\": \"2016-09-16T17:01:54.2766738Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5a0c431c58f24e438b680f09b3545d88/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T17:01:33.4827215Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_62d66524b30d49059c2c3158dea742d3\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_62d66524b30d49059c2c3158dea742d3\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T04:39:33.4446039Z\",\r\n \"modifiedOn\": \"2016-09-19T04:39:49.2087427Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9ceba9738ba14c649c6eeeb73a75b43f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T04:39:28.3851228Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_6335b09392da447ba227efe3b1b77481\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_6335b09392da447ba227efe3b1b77481\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:57:49.172975Z\",\r\n \"modifiedOn\": \"2016-09-20T14:58:00.5529673Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a56bb211551f4cd9976f5111fb274306/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:56:53.0872171Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_6874b02ebe7f4b1baba8fe5edb7bf2e8\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_6874b02ebe7f4b1baba8fe5edb7bf2e8\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T04:21:48.4286456Z\",\r\n \"modifiedOn\": \"2016-09-19T04:21:57.8183531Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0e3bee07c69d48e7af0c503263183132/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T04:21:43.3638731Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_69048eba5f204b1ebf3096a1a4b93955\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_69048eba5f204b1ebf3096a1a4b93955\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:39:53.6793013Z\",\r\n \"modifiedOn\": \"2016-09-16T20:40:11.5806062Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/795bdd05cc414729ba8aff4a391eaacf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T20:39:51.3561285Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_7028f2680a2b432c8baa88028ae4b9e8\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_7028f2680a2b432c8baa88028ae4b9e8\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:08:26.7902685Z\",\r\n \"modifiedOn\": \"2016-09-16T17:08:38.5332165Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/71d2f7307b6a4b3e9648f2fb26384189/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T17:08:18.4478178Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_71c4426dcc774c49ac3124478be0e3d1\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_71c4426dcc774c49ac3124478be0e3d1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:47:36.5305975Z\",\r\n \"modifiedOn\": \"2016-09-20T14:47:46.769941Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe58f0378fda4285a6809dc07ae00f7a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:46:40.4981022Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_749b985a1b22414f8aeacc22fc805ff2\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_749b985a1b22414f8aeacc22fc805ff2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T20:13:13.4830693Z\",\r\n \"modifiedOn\": \"2016-09-19T20:13:25.8208835Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b3374886a3e84177b6996effcfb89b42/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T20:12:19.9030612Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_7be08906fb6245cc9b1bc5718ab09c8f\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_7be08906fb6245cc9b1bc5718ab09c8f\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T16:43:46.3083566Z\",\r\n \"modifiedOn\": \"2016-09-16T16:43:57.0761682Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca05d78c846e4b35bd9de4fe76f6f10a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T16:43:42.5794843Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_7cd6fd176a8c4951abd09bc93224d148\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_7cd6fd176a8c4951abd09bc93224d148\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T15:09:47.5613273Z\",\r\n \"modifiedOn\": \"2016-09-19T15:10:02.21411Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/62bd906434f247eda39f916aa70a3f67/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T15:09:45.3248565Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_7eee78519c0b4f8b92258ddb2cd5c00d\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_7eee78519c0b4f8b92258ddb2cd5c00d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:42:33.090952Z\",\r\n \"modifiedOn\": \"2016-09-19T03:42:47.4276094Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b935e2c31bd4d2bba0bf0cce95cd759/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:42:28.1441968Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_90c86e17cb7b4828afc12d71e2e3e211\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_90c86e17cb7b4828afc12d71e2e3e211\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:22:21.6065848Z\",\r\n \"modifiedOn\": \"2016-09-16T17:22:37.3382432Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dc7348643fe64c918cbeecf756ee80d1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T17:22:15.1897444Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_96a82105b8bb472d873335172de6d699\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_96a82105b8bb472d873335172de6d699\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T23:21:09.1160537Z\",\r\n \"modifiedOn\": \"2016-09-19T23:21:27.6917608Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3e60bcb2e38b48259150f455fcede394/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T23:20:16.4995828Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_9d127497e41548488ac11043d9235803\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_9d127497e41548488ac11043d9235803\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:57:26.5060109Z\",\r\n \"modifiedOn\": \"2016-09-20T14:57:36.6363022Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3e741cf9d539421baefb451439a79cd8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:56:29.8258548Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_aa28645b7c004d19a38ed7f476faf7c5\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_aa28645b7c004d19a38ed7f476faf7c5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T00:55:22.607328Z\",\r\n \"modifiedOn\": \"2016-09-20T00:55:34.1985466Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d24adea52aa4619905ece367d86256d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T00:55:19.7667533Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_b03c44c9926045b0ba9ac4e058958863\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_b03c44c9926045b0ba9ac4e058958863\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T00:19:44.3558877Z\",\r\n \"modifiedOn\": \"2016-09-20T00:19:58.0410603Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6ab62d8f577f417c90dd6cf05c4aa31c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T00:19:39.155606Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_b808a0786eab4b4a84329e327d0a64c8\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_b808a0786eab4b4a84329e327d0a64c8\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T15:02:33.7500385Z\",\r\n \"modifiedOn\": \"2016-09-19T15:02:43.6447163Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d41278cb6d6c4256b91f91ecaf660807/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T15:02:29.7471651Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_ba2ab98169064d4ebf17b30d7209b979\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_ba2ab98169064d4ebf17b30d7209b979\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:45:50.4875139Z\",\r\n \"modifiedOn\": \"2016-09-19T03:46:02.2528089Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3ab49ddc498c49f7aa44ca7f36488f3d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:45:46.495488Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_bd4749e37f05446997f95a9d19de6794\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_bd4749e37f05446997f95a9d19de6794\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T15:47:13.6132986Z\",\r\n \"modifiedOn\": \"2016-09-20T15:47:36.5057073Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e5b7e7f0c46247998c27da7886a3e260/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T15:46:19.4867142Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_bfe27d74e82a4967b6a4fc6e823a0c87\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_bfe27d74e82a4967b6a4fc6e823a0c87\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:37:06.9786448Z\",\r\n \"modifiedOn\": \"2016-09-16T20:37:21.686127Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6e3c410946cd463e8457d335b8d931f1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T20:37:04.0147639Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_cc4ae5fc980b4133997f249940da244d\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_cc4ae5fc980b4133997f249940da244d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:51:21.777162Z\",\r\n \"modifiedOn\": \"2016-09-19T03:51:32.0782751Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/240b9ea8986f49d8832f07c4a72ac24b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:51:16.4140983Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_d88c9e62a7f743c2b0d2b7fabf62a010\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_d88c9e62a7f743c2b0d2b7fabf62a010\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:43:59.1629056Z\",\r\n \"modifiedOn\": \"2016-09-19T03:44:09.6820285Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a02e023762e54b128ec3406839b7a2b4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:43:56.0758095Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_d94f0730a1cb4f9c8438d5beea5e21fa\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_d94f0730a1cb4f9c8438d5beea5e21fa\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T16:53:19.7555618Z\",\r\n \"modifiedOn\": \"2016-09-19T16:53:31.1059309Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/51b8f373c9504d20b2d204ccc9cc2446/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T16:53:17.5231798Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_d9a99167ce0f4356b7decc5f6715fb24\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_d9a99167ce0f4356b7decc5f6715fb24\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T23:34:38.27031Z\",\r\n \"modifiedOn\": \"2016-09-19T23:34:52.950845Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/75956b31ebb94016864c7342c4db908c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T23:33:43.4277883Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_e0bfe6d9f9bf4371a090bfd97de54170\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_e0bfe6d9f9bf4371a090bfd97de54170\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T22:36:52.4396748Z\",\r\n \"modifiedOn\": \"2016-09-16T22:37:07.4046121Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3ba75346f2674d4cad8b7c2157533d11/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T22:36:47.2556973Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_e46c73c8f75b45b5a9326459c71b8d05\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_e46c73c8f75b45b5a9326459c71b8d05\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:30:00.7014036Z\",\r\n \"modifiedOn\": \"2016-09-20T14:30:17.3054757Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6104dcfadcca468882774fe2dba5fd2b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:29:06.957254Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_edbb2de561da4fa7ba77a93316fab23c\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_edbb2de561da4fa7ba77a93316fab23c\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:30:51.0051435Z\",\r\n \"modifiedOn\": \"2016-09-20T14:31:07.5457612Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/82b7ee0284664803a7e5959af15af870/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:29:57.3023803Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_eedcd095c7f04640b5f760600a2812c6\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_eedcd095c7f04640b5f760600a2812c6\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T14:19:01.7640892Z\",\r\n \"modifiedOn\": \"2016-09-19T14:19:19.6664886Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/81f90412423b40619cda999886a733a9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T14:19:00.3450757Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_f4b0e2b78c5e439e96fec98e87aea512\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_f4b0e2b78c5e439e96fec98e87aea512\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:11:46.2933611Z\",\r\n \"modifiedOn\": \"2016-09-20T14:11:55.7690136Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e0f8541b28934aa582805daf26717e93/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:10:47.9862032Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_fdbc32f1ebf64ef49f9c223d8b0513a4\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_fdbc32f1ebf64ef49f9c223d8b0513a4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T00:54:57.3467388Z\",\r\n \"modifiedOn\": \"2016-09-20T00:55:07.5458243Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8f449bf41eff4fd9a99721b82943fc9c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T00:54:52.7716866Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupNamefcc61e4f299b4c419ce40a587a62a801/providers/Microsoft.MachineLearning/webServices/resourceName037bc730d85244c7a3c019ba3bae93ea\",\r\n \"name\": \"resourceName037bc730d85244c7a3c019ba3bae93ea\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-25T22:54:07.397643Z\",\r\n \"modifiedOn\": \"2016-08-25T22:54:21.9369689Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0157dccbfb674725a2296e2e2e400fe2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupNamed80bdb9629404f1a8936e3d7f8307077/providers/Microsoft.MachineLearning/webServices/resourceName3e13f62670c944d2b21237e5f8da380b\",\r\n \"name\": \"resourceName3e13f62670c944d2b21237e5f8da380b\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-23T19:59:44.1976605Z\",\r\n \"modifiedOn\": \"2016-08-23T20:00:02.895154Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3b885f4cf0e24647b7bb11445412736b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupNamece83243a89b8461cb5b05b8c6643781c/providers/Microsoft.MachineLearning/webServices/resourceName665cc2daeddf43dcab7833b0bcf263ca\",\r\n \"name\": \"resourceName665cc2daeddf43dcab7833b0bcf263ca\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-30T18:23:22.9549319Z\",\r\n \"modifiedOn\": \"2016-08-30T18:23:41.5226057Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8523beac0cfc420aa7ad742461464c89/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\",\r\n \"expiry\": \"2016-09-01T18:22:25.9922994Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupNamecc83d205d9e14814bcad4ba8e7796b90/providers/Microsoft.MachineLearning/webServices/resourceName6dcb081c85fe4460bef55e53cf63c213\",\r\n \"name\": \"resourceName6dcb081c85fe4460bef55e53cf63c213\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-29T00:54:51.9443302Z\",\r\n \"modifiedOn\": \"2016-08-29T00:55:14.4813716Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2a78e9e2ab64939b28b3e0aae1a9b5e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName8784ab435fc14902aa5bf9471fd1826b/providers/Microsoft.MachineLearning/webServices/resourceName8bb1bdd62998481eba1430e6786d4643\",\r\n \"name\": \"resourceName8bb1bdd62998481eba1430e6786d4643\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-26T17:50:13.1521443Z\",\r\n \"modifiedOn\": \"2016-08-26T17:50:23.2641593Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b755889f95841cfa7ca2f46b2b1bf22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName2b80ddc2630d46cd8854d46a85973467/providers/Microsoft.MachineLearning/webServices/resourceName91beb41ff1ae4f38addde847743277d6\",\r\n \"name\": \"resourceName91beb41ff1ae4f38addde847743277d6\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-25T22:45:50.7074316Z\",\r\n \"modifiedOn\": \"2016-08-25T22:46:06.6751137Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/448a30921e524f52a33227a94dc2f045/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName86f498eedefb450da8cd882692149d3f/providers/Microsoft.MachineLearning/webServices/resourceName961c7c6edcb2463694f9fee099545f39\",\r\n \"name\": \"resourceName961c7c6edcb2463694f9fee099545f39\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-29T00:48:47.2849973Z\",\r\n \"modifiedOn\": \"2016-08-29T00:49:01.8895155Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/85a338c9085f4542ad344d70c85bc3d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName7679d65b22e743a1beb5f67ad6e54619/providers/Microsoft.MachineLearning/webServices/resourceNamead1f07039416497b993cddf2de2cd8d4\",\r\n \"name\": \"resourceNamead1f07039416497b993cddf2de2cd8d4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-24T17:24:20.4948285Z\",\r\n \"modifiedOn\": \"2016-08-24T17:24:37.413201Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e637ee7edb904af098808541d4fd5244/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName37a84a3ecfea42ec8dd647c54da2eaea/providers/Microsoft.MachineLearning/webServices/resourceNamec719de91e75e48798b6fb9909a921778\",\r\n \"name\": \"resourceNamec719de91e75e48798b6fb9909a921778\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-30T23:43:44.5958052Z\",\r\n \"modifiedOn\": \"2016-08-30T23:43:58.7342704Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0bdbaaa6383b47aea015821667eafa05/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\",\r\n \"expiry\": \"2016-09-01T23:42:43.8109961Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName331e04dc376843feb444a13a65f397c3/providers/Microsoft.MachineLearning/webServices/resourceNameec689017e8614678afcfdcb1bd1031a4\",\r\n \"name\": \"resourceNameec689017e8614678afcfdcb1bd1031a4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-29T17:46:08.7672041Z\",\r\n \"modifiedOn\": \"2016-08-29T17:46:22.6243257Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/442ceedbcaf54aa595f0638db0161729/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/RModelTrainScore.2017.2.9.18.50.6.919\",\r\n \"name\": \"RModelTrainScore.2017.2.9.18.50.6.919\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-09T18:50:36.9226071Z\",\r\n \"modifiedOn\": \"2017-02-09T18:55:12.6626047Z\",\r\n \"title\": \"R Model Train & Score [Predictive Exp.]\",\r\n \"description\": \"Demonstration of using the Train R Model functionality to train, score and evaluate a logistic regression model.\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8e250ef374a94eb799c1900064c3e0a1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Sample1Downloadd.2016.6.30.18.53.28.733\",\r\n \"name\": \"Sample1Downloadd.2016.6.30.18.53.28.733\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-30T18:54:02.053822Z\",\r\n \"modifiedOn\": \"2016-07-20T18:16:26.3170278Z\",\r\n \"description\": \"Sample 1: Download dataset from UCI: Adult 2 class dataset\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2094b5f840ca4adf8e94c3c41a910744/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Sample1Prod\",\r\n \"name\": \"Sample1Prod\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-27T23:14:54.7278045Z\",\r\n \"modifiedOn\": \"2016-05-27T23:15:01.2889756Z\",\r\n \"title\": \"Some title\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ab5862dd3cde499fa9fe089b565b1bae/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/Workspaces/bohuws01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Sample5TrainTest.2016.8.12.0.0.29.49\",\r\n \"name\": \"Sample5TrainTest.2016.8.12.0.0.29.49\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T00:04:02.8246812Z\",\r\n \"modifiedOn\": \"2016-08-12T00:04:18.8304061Z\",\r\n \"title\": \"Sample 5: Train, Test, Evaluate for Binary Classification: Adult Dataset [Predictive Exp.]\",\r\n \"description\": \"This experiment demonstrates how we can build a binary classification model to predict income levels of adult individuals. The process includes training, testing and evaluating the model on the Adult dataset. \",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b5f5416e8b5416f8520b630ee208b6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"mlritbhat\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Sample5TrainTest.2016.8.12.0.0.29.49.2016.8.30.21.53.12.301\",\r\n \"name\": \"Sample5TrainTest.2016.8.12.0.0.29.49.2016.8.30.21.53.12.301\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-30T21:53:43.4535524Z\",\r\n \"modifiedOn\": \"2016-08-30T21:53:59.1230885Z\",\r\n \"title\": \"\",\r\n \"description\": \"This experiment demonstrates how we can build a binary classification model to predict income levels of adult individuals. The process includes training, testing and evaluating the model on the Adult dataset. \",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fbafee959eb4440ca39bd38026d80d88/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"mlritbhat\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Sample5TrainTest.GlobalParam\",\r\n \"name\": \"Sample5TrainTest.GlobalParam\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-04T00:16:28.2338216Z\",\r\n \"modifiedOn\": \"2016-10-04T00:16:40.1721484Z\",\r\n \"title\": \"Sample 5: Train, Test, Evaluate for Binary Classification: Adult Dataset [Predictive Exp.]\",\r\n \"description\": \"This experiment demonstrates how we can build a binary classification model to predict income levels of adult individuals. The process includes training, testing and evaluating the model on the Adult dataset. \",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e8d37158cf1142cd911a68f2bf535d98/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bestest/providers/Microsoft.MachineLearning/webServices/Sample9Splitpart.2016.7.15.4.54.27.50\",\r\n \"name\": \"Sample9Splitpart.2016.7.15.4.54.27.50\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-07-15T05:20:53.5890145Z\",\r\n \"modifiedOn\": \"2016-07-15T05:26:24.7891556Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/153ec9a95aea4cc2b5a1bd310344305b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/sdktestservicedeployed7\",\r\n \"name\": \"sdktestservicedeployed7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-10T14:56:26.7284604Z\",\r\n \"modifiedOn\": \"2016-08-12T00:25:23.4874189Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3f79683c113d4afab535fb875862861f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/sdktestservicedeployed8\",\r\n \"name\": \"sdktestservicedeployed8\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-10T15:39:47.1805418Z\",\r\n \"modifiedOn\": \"2016-08-11T23:15:24.0911621Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e44ddaaeeb4c4cfc8e8a26d0047b601c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/sdktestservicedeployed9\",\r\n \"name\": \"sdktestservicedeployed9\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-10T15:42:16.0725839Z\",\r\n \"modifiedOn\": \"2016-08-11T23:15:56.409721Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8054b922206f4d1cae378af26cf65399/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/SimpleExp2.2016.8.22.19.3.4.857\",\r\n \"name\": \"SimpleExp2.2016.8.22.19.3.4.857\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-22T19:03:44.4312615Z\",\r\n \"modifiedOn\": \"2016-09-20T18:26:35.0196181Z\",\r\n \"title\": \"SimpleExp2\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cb1b20dc3192417096e0a092590b88f1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/SleepingBeauty\",\r\n \"name\": \"SleepingBeauty\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-31T19:45:53.916705Z\",\r\n \"modifiedOn\": \"2016-06-22T23:56:18.4864543Z\",\r\n \"title\": \"The Sleeping Beauty\",\r\n \"description\": \"Sleeping Beauty\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d33fab927eee47ff94dcf9ad65356536/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/SleepingBeauty.2016.7.22.21.51.33.241\",\r\n \"name\": \"SleepingBeauty.2016.7.22.21.51.33.241\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-07-22T21:51:51.449068Z\",\r\n \"modifiedOn\": \"2016-07-25T22:21:16.1377169Z\",\r\n \"title\": \"Sleeping Beauty2\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/690ef858af8f413d9feec14b4bd080ee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test111\",\r\n \"name\": \"test111\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-12T19:03:36.6455282Z\",\r\n \"modifiedOn\": \"2016-08-12T19:33:36.6168972Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0553be9e9b7b42a09177308016318854/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test1112\",\r\n \"name\": \"test1112\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-12T19:34:27.0386711Z\",\r\n \"modifiedOn\": \"2016-08-12T19:35:26.9310907Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b9dac790f24c4d00969642bd1342e56d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test1113\",\r\n \"name\": \"test1113\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T19:40:04.8459748Z\",\r\n \"modifiedOn\": \"2016-08-12T19:40:25.9088726Z\",\r\n \"title\": \"TempExpt2_withCM\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c230bc34d94d4b91af74a726391a0376/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"corpwsstorage\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test222\",\r\n \"name\": \"test222\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T21:51:36.309924Z\",\r\n \"modifiedOn\": \"2016-08-12T21:56:31.3888537Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa977a4b432745ae902e57b936d92ee4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"corpwsstorage\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"3a4a8c0191ee462fa185189f3ecd1799\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/TestILearnerWMetadata\",\r\n \"name\": \"TestILearnerWMetadata\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-10T20:29:00.5358158Z\",\r\n \"modifiedOn\": \"2017-02-10T20:29:22.1012598Z\",\r\n \"title\": \"Test ILEARNER with METADATA\",\r\n \"description\": \"Test iLearner with metadata\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5a37f6c6757848d1bd5a636d9a69ed76/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/TestILearnerWMetadata1\",\r\n \"name\": \"TestILearnerWMetadata1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-10T20:30:56.5129874Z\",\r\n \"modifiedOn\": \"2017-02-10T21:07:06.8731971Z\",\r\n \"title\": \"Test ILEARNER with METADATA\",\r\n \"description\": \"Test iLearner with metadata\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7583e68a0e5f4aaca3d89ea5d8d308f6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/testmultioutweirdnames\",\r\n \"name\": \"testmultioutweirdnames\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-03T20:51:32.0495614Z\",\r\n \"modifiedOn\": \"2016-10-03T20:51:47.9980461Z\",\r\n \"title\": \"Experiment created on 10/3/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/99e916c9e05e4328b27537ae2233c346/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/stcob/providers/Microsoft.MachineLearning/webServices/testNew.2017.2.15.0.27.36.763\",\r\n \"name\": \"testNew.2017.2.15.0.27.36.763\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-15T00:28:03.6185052Z\",\r\n \"modifiedOn\": \"2017-02-15T00:28:22.9246684Z\",\r\n \"title\": \"testNew\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d8c7b418a4024b7ab10cdbece72b422c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stcobstorage\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0000\",\r\n \"name\": \"testWS-0000\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:16:17.2362144Z\",\r\n \"modifiedOn\": \"2016-09-15T23:16:34.4607021Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/49ad68e427074b4bba875f41435b30df/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0001\",\r\n \"name\": \"testWS-0001\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:16:41.2019869Z\",\r\n \"modifiedOn\": \"2016-09-15T23:16:57.3286844Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e13c11631b1c4e8bbd2b573db421a014/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0002\",\r\n \"name\": \"testWS-0002\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:17:05.2087048Z\",\r\n \"modifiedOn\": \"2016-09-15T23:17:19.7191901Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05a6cec9f1144a5e9d93d7e56defa236/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0003\",\r\n \"name\": \"testWS-0003\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:17:21.2447194Z\",\r\n \"modifiedOn\": \"2016-09-15T23:17:34.2245024Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5d06e965ba934cecaf682e3f84e37584/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0004\",\r\n \"name\": \"testWS-0004\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:17:40.0795567Z\",\r\n \"modifiedOn\": \"2016-09-15T23:17:54.5267223Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/39cf37447b2b4e41836282858cc5e053/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0005\",\r\n \"name\": \"testWS-0005\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:17:58.7568754Z\",\r\n \"modifiedOn\": \"2016-09-15T23:18:07.3461543Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/146a3ef38e654aa08b404ba5732a447a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0006\",\r\n \"name\": \"testWS-0006\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:18:12.0039556Z\",\r\n \"modifiedOn\": \"2016-09-15T23:18:27.8524036Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a98ef044ae224fc0b234e44184698252/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0007\",\r\n \"name\": \"testWS-0007\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:18:32.5845835Z\",\r\n \"modifiedOn\": \"2016-09-15T23:18:48.2279273Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b87ecb06ae14482dba712204c371b13e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0008\",\r\n \"name\": \"testWS-0008\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:18:53.2042737Z\",\r\n \"modifiedOn\": \"2016-09-15T23:19:03.5325051Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2584dcccf93f409688b8e9b8dd84e2dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0009\",\r\n \"name\": \"testWS-0009\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:19:09.371409Z\",\r\n \"modifiedOn\": \"2016-09-15T23:19:22.8422327Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd88973414b24482a2c3acb7c50926dd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0010\",\r\n \"name\": \"testWS-0010\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:19:30.0452429Z\",\r\n \"modifiedOn\": \"2016-09-15T23:19:37.0047654Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/321a71646b1348a4bb3db40e58e94039/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0011\",\r\n \"name\": \"testWS-0011\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:19:42.203444Z\",\r\n \"modifiedOn\": \"2016-09-15T23:19:55.8129406Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/69fb983874db43cd9ccfc4299dc4a8fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0012\",\r\n \"name\": \"testWS-0012\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:20:04.5151706Z\",\r\n \"modifiedOn\": \"2016-09-15T23:20:20.1847293Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c565f212d5034244b5378f47ce38c3a7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0013\",\r\n \"name\": \"testWS-0013\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:20:26.4909971Z\",\r\n \"modifiedOn\": \"2016-09-15T23:20:38.4779882Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bb5ba4691f254fa3b3cd8d9e63679314/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0014\",\r\n \"name\": \"testWS-0014\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:20:43.7093571Z\",\r\n \"modifiedOn\": \"2016-09-15T23:20:57.9496058Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fc9491df3085448683987763277dc8a5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0015\",\r\n \"name\": \"testWS-0015\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:21:00.1144451Z\",\r\n \"modifiedOn\": \"2016-09-15T23:21:15.8954356Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1e623e45c050489794c9cfb408f327b5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0016\",\r\n \"name\": \"testWS-0016\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:21:16.6294212Z\",\r\n \"modifiedOn\": \"2016-09-15T23:21:29.1133876Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d61b424e1ced4593a84c3ad1cc0cea8b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0017\",\r\n \"name\": \"testWS-0017\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:21:35.5405506Z\",\r\n \"modifiedOn\": \"2016-09-15T23:21:47.9801164Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a4cbb0136ec34563a7aaebc63d29abb5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0018\",\r\n \"name\": \"testWS-0018\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:21:54.2009297Z\",\r\n \"modifiedOn\": \"2016-09-15T23:22:07.617505Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3d2248e85bb649e4bbdb651f3e79a79b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0019\",\r\n \"name\": \"testWS-0019\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:22:09.284205Z\",\r\n \"modifiedOn\": \"2016-09-15T23:22:19.0323631Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a908459301ca47daaf4593393ec8adc8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0020\",\r\n \"name\": \"testWS-0020\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:22:21.3489504Z\",\r\n \"modifiedOn\": \"2016-09-15T23:22:35.043549Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/52399a4488864e65b78faf7f0cdf118e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0021\",\r\n \"name\": \"testWS-0021\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:22:40.3457225Z\",\r\n \"modifiedOn\": \"2016-09-15T23:22:56.4714689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dd139dd25410402fba0177699a65f5e8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0022\",\r\n \"name\": \"testWS-0022\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:23:01.6224561Z\",\r\n \"modifiedOn\": \"2016-09-15T23:23:14.9567095Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f98f7b958c3d4bf380f9e0d9aa8ee879/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0023\",\r\n \"name\": \"testWS-0023\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:23:21.9809681Z\",\r\n \"modifiedOn\": \"2016-09-15T23:23:37.8885925Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d6efdf66805c444a914dbc0873611add/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0024\",\r\n \"name\": \"testWS-0024\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:23:42.3218544Z\",\r\n \"modifiedOn\": \"2016-09-15T23:23:53.8199788Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/27922477e2b543c98cb15fe058a9cbd5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0025\",\r\n \"name\": \"testWS-0025\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:23:56.2279561Z\",\r\n \"modifiedOn\": \"2016-09-15T23:24:07.5046207Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d001d63985564ace9ffdd1ee77af2fba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0026\",\r\n \"name\": \"testWS-0026\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:24:15.9158283Z\",\r\n \"modifiedOn\": \"2016-09-15T23:24:26.2621346Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/69629ec3d3164fe49ac9654a00c2fdc3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0027\",\r\n \"name\": \"testWS-0027\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:24:31.1129696Z\",\r\n \"modifiedOn\": \"2016-09-15T23:24:45.1615226Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c45bdf85cd6f4265ad3dbe00aac81335/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0028\",\r\n \"name\": \"testWS-0028\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:24:49.6059194Z\",\r\n \"modifiedOn\": \"2016-09-15T23:24:59.5425805Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/716741c2baa94b8fb8d779e2bfae6b78/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0029\",\r\n \"name\": \"testWS-0029\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:25:01.8728728Z\",\r\n \"modifiedOn\": \"2016-09-15T23:25:21.713294Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e25e0e16b2394c05922e67c55616f548/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0030\",\r\n \"name\": \"testWS-0030\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:25:23.3165722Z\",\r\n \"modifiedOn\": \"2016-09-15T23:25:39.1795786Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/20bcba1d4d344e6780f3c16881d8bf73/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0031\",\r\n \"name\": \"testWS-0031\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:25:47.1778728Z\",\r\n \"modifiedOn\": \"2016-09-15T23:26:04.8883798Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ad82f12a379945dbb5faea433a7e9569/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0032\",\r\n \"name\": \"testWS-0032\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:26:08.2637721Z\",\r\n \"modifiedOn\": \"2016-09-15T23:26:19.8871644Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c07dd410cd944df78562da7abf0c67e7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0033\",\r\n \"name\": \"testWS-0033\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:26:24.8210829Z\",\r\n \"modifiedOn\": \"2016-09-15T23:26:37.5318703Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1b39db7fa36c47ab84af0ff0454e2d68/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0034\",\r\n \"name\": \"testWS-0034\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:26:44.7007417Z\",\r\n \"modifiedOn\": \"2016-09-15T23:26:54.4099136Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6820c6c574ac41e5a0033e9348f866c8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0035\",\r\n \"name\": \"testWS-0035\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:27:01.9644309Z\",\r\n \"modifiedOn\": \"2016-09-15T23:27:16.8869163Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c8ce17c03694d7089662804208758b6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0036\",\r\n \"name\": \"testWS-0036\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:27:19.0348847Z\",\r\n \"modifiedOn\": \"2016-09-15T23:27:31.6744118Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2e3c4d29f0154725bdc41ade4dfa8e3e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0037\",\r\n \"name\": \"testWS-0037\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:27:33.4364667Z\",\r\n \"modifiedOn\": \"2016-09-15T23:27:49.4687762Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ef018a7bc82c43cb8cbb8c482948e47c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0038\",\r\n \"name\": \"testWS-0038\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:27:53.6323251Z\",\r\n \"modifiedOn\": \"2016-09-15T23:28:01.9548523Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c6faea1559774e84b04d0f3a5bc8ccec/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0039\",\r\n \"name\": \"testWS-0039\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:28:03.0510084Z\",\r\n \"modifiedOn\": \"2016-09-15T23:28:16.9923657Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2f3b2906c2a8463681f13795104c8cc2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0040\",\r\n \"name\": \"testWS-0040\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:28:23.3588013Z\",\r\n \"modifiedOn\": \"2016-09-15T23:28:39.1992171Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05ea55aef41547fbba34517846596adc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0041\",\r\n \"name\": \"testWS-0041\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:28:45.486516Z\",\r\n \"modifiedOn\": \"2016-09-15T23:28:55.4426448Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6390b37595e943c2be4017807bf0b405/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0042\",\r\n \"name\": \"testWS-0042\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:29:00.0729598Z\",\r\n \"modifiedOn\": \"2016-09-15T23:29:13.487124Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/95cf5ae7c98b423ebe03c7937fd84e49/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0043\",\r\n \"name\": \"testWS-0043\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:29:19.7621778Z\",\r\n \"modifiedOn\": \"2016-09-15T23:29:30.0834129Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8145f41a119a45d7ac9e98b302eaa641/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0044\",\r\n \"name\": \"testWS-0044\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:29:38.606588Z\",\r\n \"modifiedOn\": \"2016-09-15T23:29:52.9728889Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a7172b898dd94f03886c3fdeabe09d36/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0045\",\r\n \"name\": \"testWS-0045\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:29:58.9926108Z\",\r\n \"modifiedOn\": \"2016-09-15T23:30:13.671907Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/68039aeeda1b4e03ad16567664f5076f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0046\",\r\n \"name\": \"testWS-0046\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:30:15.3485571Z\",\r\n \"modifiedOn\": \"2016-09-15T23:30:37.5938286Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc3c7d2943eb435a86a51ce068fdf5dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0047\",\r\n \"name\": \"testWS-0047\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:30:40.4262738Z\",\r\n \"modifiedOn\": \"2016-09-15T23:30:57.8978417Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1f3cd233621742dda90e5b02923449f8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0048\",\r\n \"name\": \"testWS-0048\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:31:01.7475598Z\",\r\n \"modifiedOn\": \"2016-09-15T23:31:17.3860996Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/04fdc25d87184ee59a154d4b5bdfeca8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0049\",\r\n \"name\": \"testWS-0049\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:31:20.213744Z\",\r\n \"modifiedOn\": \"2016-09-15T23:31:36.0306818Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5dad52eeb5d144419cf0d2c73c5350a4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0050\",\r\n \"name\": \"testWS-0050\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:31:43.1265532Z\",\r\n \"modifiedOn\": \"2016-09-15T23:32:04.8961063Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca19f30d2ffc4d8eac69cd442810d185/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0051\",\r\n \"name\": \"testWS-0051\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:32:09.6196949Z\",\r\n \"modifiedOn\": \"2016-09-15T23:32:24.7610934Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5c950b312edb4cd4a6fbbfc7e27948cf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0052\",\r\n \"name\": \"testWS-0052\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:32:25.8509309Z\",\r\n \"modifiedOn\": \"2016-09-15T23:32:47.7527813Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/452b5888b34c4d028b4d84b8b2eae5aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0053\",\r\n \"name\": \"testWS-0053\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:32:48.7012211Z\",\r\n \"modifiedOn\": \"2016-09-15T23:33:00.6209605Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d730a50409fd4613ac37a1a66495cf8b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0054\",\r\n \"name\": \"testWS-0054\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:33:00.8345725Z\",\r\n \"modifiedOn\": \"2016-09-15T23:33:15.4728056Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/70501d8690564345b2977d59f6603baa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0055\",\r\n \"name\": \"testWS-0055\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:33:19.9278679Z\",\r\n \"modifiedOn\": \"2016-09-15T23:33:34.6938011Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ee4a75e63d444bc9a293359ceb7aaebd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0056\",\r\n \"name\": \"testWS-0056\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:33:37.599137Z\",\r\n \"modifiedOn\": \"2016-09-15T23:33:50.6758198Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4ab633885e5419abeb8f5c8d8a64e8a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0057\",\r\n \"name\": \"testWS-0057\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:33:53.8384529Z\",\r\n \"modifiedOn\": \"2016-09-15T23:34:08.1656086Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b08f96405ac34170b1d5dbe1d7dafd83/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0058\",\r\n \"name\": \"testWS-0058\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:34:13.5233725Z\",\r\n \"modifiedOn\": \"2016-09-15T23:34:24.560882Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f3f83a3a9e5941068383f7cedfc3b706/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0059\",\r\n \"name\": \"testWS-0059\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:34:30.9238916Z\",\r\n \"modifiedOn\": \"2016-09-15T23:34:40.1412193Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c50e9b77f82645ed94711002920c24db/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0060\",\r\n \"name\": \"testWS-0060\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:34:43.1650333Z\",\r\n \"modifiedOn\": \"2016-09-15T23:34:52.6746807Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e9f9e2cf36a0420bb3b5d88f02d76805/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0061\",\r\n \"name\": \"testWS-0061\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:34:54.7382841Z\",\r\n \"modifiedOn\": \"2016-09-15T23:35:10.0876123Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3453108db62940e8b3799a2ff8c3ccba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0062\",\r\n \"name\": \"testWS-0062\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:35:15.162873Z\",\r\n \"modifiedOn\": \"2016-09-15T23:35:31.0006174Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/44e728c4146f4f3c98b170f0340b0178/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0063\",\r\n \"name\": \"testWS-0063\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:35:35.6706809Z\",\r\n \"modifiedOn\": \"2016-09-15T23:35:53.0869616Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f89bbcb99c114331a1f7078f1b85f19b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0064\",\r\n \"name\": \"testWS-0064\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:36:00.9916642Z\",\r\n \"modifiedOn\": \"2016-09-15T23:36:17.0592383Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/474f715f133648db84c1fa4da78c2090/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0065\",\r\n \"name\": \"testWS-0065\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:36:23.1554022Z\",\r\n \"modifiedOn\": \"2016-09-15T23:36:33.3435757Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ffa50b0a1c3f4f5c9315bdf5114b7dc6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0066\",\r\n \"name\": \"testWS-0066\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:36:36.5550113Z\",\r\n \"modifiedOn\": \"2016-09-15T23:36:47.8267998Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/053a7e3be8354f0bb28a163269937cfb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0067\",\r\n \"name\": \"testWS-0067\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:36:51.7725127Z\",\r\n \"modifiedOn\": \"2016-09-15T23:37:14.7266465Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1f573fbb92b8428398fb7febba67d280/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0068\",\r\n \"name\": \"testWS-0068\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:37:23.465709Z\",\r\n \"modifiedOn\": \"2016-09-15T23:37:39.3167796Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/06a10b43d3144c2b86bd8a99930cb7b2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0069\",\r\n \"name\": \"testWS-0069\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:37:48.8400381Z\",\r\n \"modifiedOn\": \"2016-09-15T23:37:56.365417Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f49f9854c4434dbd9ee5dac67f76cd33/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0070\",\r\n \"name\": \"testWS-0070\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:38:03.201482Z\",\r\n \"modifiedOn\": \"2016-09-15T23:38:11.461935Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9dc5f68347884b289908416f7e00969e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0071\",\r\n \"name\": \"testWS-0071\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:38:12.1993498Z\",\r\n \"modifiedOn\": \"2016-09-15T23:38:29.3557707Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/057c5b2f402841f1b1ce1b9ec2f4017b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0072\",\r\n \"name\": \"testWS-0072\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:38:34.0658494Z\",\r\n \"modifiedOn\": \"2016-09-15T23:38:45.9847318Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/875df7e57caa4799a2949f1c653dd56b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0073\",\r\n \"name\": \"testWS-0073\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:38:50.8342357Z\",\r\n \"modifiedOn\": \"2016-09-15T23:39:01.6181093Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/10d2e500fcfd4f0a854e2dcb78a08e80/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0074\",\r\n \"name\": \"testWS-0074\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:39:08.7732173Z\",\r\n \"modifiedOn\": \"2016-09-15T23:39:23.1371022Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c9eda3619d148c981723910abad3889/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0075\",\r\n \"name\": \"testWS-0075\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:39:27.9900928Z\",\r\n \"modifiedOn\": \"2016-09-15T23:39:41.6596063Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/749d66ea3f5e414fa685b82d68dce181/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0076\",\r\n \"name\": \"testWS-0076\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:39:46.0743066Z\",\r\n \"modifiedOn\": \"2016-09-15T23:39:57.3333175Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e2547299f9a04e5bb9fe5abcd5c5dbef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0077\",\r\n \"name\": \"testWS-0077\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:40:04.2280798Z\",\r\n \"modifiedOn\": \"2016-09-15T23:40:20.9453654Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eb1224e9522941adb9d2361853c3c2ac/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0078\",\r\n \"name\": \"testWS-0078\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:40:25.0723686Z\",\r\n \"modifiedOn\": \"2016-09-15T23:40:49.0846394Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/024ada970b714d5b8ff179fa9915a39b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0079\",\r\n \"name\": \"testWS-0079\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:40:55.3520721Z\",\r\n \"modifiedOn\": \"2016-09-15T23:41:08.3023985Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/45e92b83301b40ddbdb83e739af0c471/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0080\",\r\n \"name\": \"testWS-0080\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:41:16.2006395Z\",\r\n \"modifiedOn\": \"2016-09-15T23:41:25.8221611Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5653b7dae5264206ba4aa83c65b19a62/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0081\",\r\n \"name\": \"testWS-0081\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:41:33.5016664Z\",\r\n \"modifiedOn\": \"2016-09-15T23:41:40.8911902Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/47a5730fa8484c5f9812948740b4dfcb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0082\",\r\n \"name\": \"testWS-0082\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:41:43.4426905Z\",\r\n \"modifiedOn\": \"2016-09-15T23:41:54.0296941Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2ae3756c13c840f3ac8a0bb133dad9a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0083\",\r\n \"name\": \"testWS-0083\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:41:59.607446Z\",\r\n \"modifiedOn\": \"2016-09-15T23:42:11.0541179Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7a123d23f9df4b0da74276ad353587f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0084\",\r\n \"name\": \"testWS-0084\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:42:18.5823853Z\",\r\n \"modifiedOn\": \"2016-09-15T23:42:33.7517083Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7ac1e5c5f02844518104abc5088ca153/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0085\",\r\n \"name\": \"testWS-0085\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:42:41.5432051Z\",\r\n \"modifiedOn\": \"2016-09-15T23:42:54.027546Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8d41b0b856aa468698674bc3ac54af8f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0086\",\r\n \"name\": \"testWS-0086\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:42:59.05448Z\",\r\n \"modifiedOn\": \"2016-09-15T23:43:08.2469683Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8e00f7f228014c378495aa846f8a26ee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0087\",\r\n \"name\": \"testWS-0087\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:43:14.1846879Z\",\r\n \"modifiedOn\": \"2016-09-15T23:43:27.7758313Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f3ad2485183242568f0fca88d369ae36/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0088\",\r\n \"name\": \"testWS-0088\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:43:33.7122397Z\",\r\n \"modifiedOn\": \"2016-09-15T23:43:48.9001383Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f6f4d87c3fb747da97287f784104e148/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0089\",\r\n \"name\": \"testWS-0089\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:43:54.2090498Z\",\r\n \"modifiedOn\": \"2016-09-15T23:44:08.4948142Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d96a3f75d1544b3f9779822414e6974a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0090\",\r\n \"name\": \"testWS-0090\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:44:16.2991248Z\",\r\n \"modifiedOn\": \"2016-09-15T23:44:35.8468257Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1fac0f2d135d472181c6e24eadf43bd0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0091\",\r\n \"name\": \"testWS-0091\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:44:36.8752724Z\",\r\n \"modifiedOn\": \"2016-09-15T23:44:47.8618115Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/957a73fefbd84e729405a55d3b10312d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0092\",\r\n \"name\": \"testWS-0092\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:44:50.6434259Z\",\r\n \"modifiedOn\": \"2016-09-15T23:45:07.5942252Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d60da8ad5dba4a3c995cfc14459db659/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0093\",\r\n \"name\": \"testWS-0093\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:45:15.1009427Z\",\r\n \"modifiedOn\": \"2016-09-15T23:45:33.018014Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/00651a1eae644d99b7183f73ca7ee7b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0094\",\r\n \"name\": \"testWS-0094\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:45:38.0121545Z\",\r\n \"modifiedOn\": \"2016-09-15T23:45:45.9385Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c7540d1c7ff84f189bc623bd6f91210b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0095\",\r\n \"name\": \"testWS-0095\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:45:50.2384521Z\",\r\n \"modifiedOn\": \"2016-09-15T23:46:05.9963624Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c6a8ea91e15413ab5bbcaa9aa7f3850/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0096\",\r\n \"name\": \"testWS-0096\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:46:12.3013945Z\",\r\n \"modifiedOn\": \"2016-09-15T23:46:23.5963688Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eee3109bf97148ea87fc579118fb5ecd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0097\",\r\n \"name\": \"testWS-0097\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:46:29.615231Z\",\r\n \"modifiedOn\": \"2016-09-15T23:46:43.3936691Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0276a5ad54554b7096986b54b232acfa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0098\",\r\n \"name\": \"testWS-0098\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:46:47.6857883Z\",\r\n \"modifiedOn\": \"2016-09-15T23:46:59.9854873Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c47e21a72e574b918586266326b5b77d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0099\",\r\n \"name\": \"testWS-0099\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:47:04.8208904Z\",\r\n \"modifiedOn\": \"2016-09-15T23:47:14.9670684Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8c46fcef4e142519f44796334483107/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0100\",\r\n \"name\": \"testWS-0100\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:47:20.7030329Z\",\r\n \"modifiedOn\": \"2016-09-15T23:47:35.4254375Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6c6e79ffea3b4f05b3a92309f9cba8ab/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0101\",\r\n \"name\": \"testWS-0101\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:47:38.2925401Z\",\r\n \"modifiedOn\": \"2016-09-15T23:47:50.3380772Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b66846d44aaf47d683d7a2de2bf2c6f9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0102\",\r\n \"name\": \"testWS-0102\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:47:55.2525126Z\",\r\n \"modifiedOn\": \"2016-09-15T23:48:06.0008352Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/915ba30ed6be4e3aacfe1af351da8626/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0103\",\r\n \"name\": \"testWS-0103\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:48:22.3607512Z\",\r\n \"modifiedOn\": \"2016-09-15T23:48:35.8922746Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f4f2312fa1bf458c85e460b3ae2a6c47/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0104\",\r\n \"name\": \"testWS-0104\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:48:42.8445846Z\",\r\n \"modifiedOn\": \"2016-09-15T23:48:51.7084682Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8667f3a85d1a4b43a42baabf2501ddff/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0105\",\r\n \"name\": \"testWS-0105\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:48:58.1467257Z\",\r\n \"modifiedOn\": \"2016-09-15T23:49:09.7137621Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e6ddde3b7fc64b9482e467093cad2908/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0106\",\r\n \"name\": \"testWS-0106\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:49:15.9013059Z\",\r\n \"modifiedOn\": \"2016-09-15T23:49:30.196671Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/72a89c1c78114701a0885fa29e2ef11d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0107\",\r\n \"name\": \"testWS-0107\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:49:33.2709533Z\",\r\n \"modifiedOn\": \"2016-09-15T23:49:48.1520038Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec16638470214cbb8eb843dfcf96ef3b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0108\",\r\n \"name\": \"testWS-0108\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:49:52.7790903Z\",\r\n \"modifiedOn\": \"2016-09-15T23:50:05.6561716Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9117530c617b4456a4e8d96443d3c3c9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0109\",\r\n \"name\": \"testWS-0109\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:50:09.7363302Z\",\r\n \"modifiedOn\": \"2016-09-15T23:50:19.7968248Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2e26c3ec2f88414c83402feee3a80097/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0110\",\r\n \"name\": \"testWS-0110\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:50:26.0275686Z\",\r\n \"modifiedOn\": \"2016-09-15T23:50:37.1055916Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7a6744383c284a2b885687723bb67736/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0111\",\r\n \"name\": \"testWS-0111\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:50:41.8237654Z\",\r\n \"modifiedOn\": \"2016-09-15T23:50:55.4102817Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/149409931a7b49378ebde0b108904a8c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0112\",\r\n \"name\": \"testWS-0112\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:51:00.9686663Z\",\r\n \"modifiedOn\": \"2016-09-15T23:51:12.2806499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7bc9f1ad0bae4f45ac4fca7d3eb898a7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0113\",\r\n \"name\": \"testWS-0113\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:51:32.606178Z\",\r\n \"modifiedOn\": \"2016-09-15T23:51:44.2341247Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/70ad2765937a4350ae461ec0043e1db0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0114\",\r\n \"name\": \"testWS-0114\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:51:45.6547444Z\",\r\n \"modifiedOn\": \"2016-09-15T23:52:01.4462126Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/51367a2222fd42808b8d56c57b1c68e6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0115\",\r\n \"name\": \"testWS-0115\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:52:10.6809419Z\",\r\n \"modifiedOn\": \"2016-09-15T23:52:21.84603Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ea856f554b3640bd84578401cec5764e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0116\",\r\n \"name\": \"testWS-0116\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:52:28.5318985Z\",\r\n \"modifiedOn\": \"2016-09-15T23:52:36.3117698Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/07acd02fca814b5388dfcbdc51a3ef5c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0117\",\r\n \"name\": \"testWS-0117\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:52:37.2546031Z\",\r\n \"modifiedOn\": \"2016-09-15T23:52:52.1277227Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/020763832a7846febf413f670278c431/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0118\",\r\n \"name\": \"testWS-0118\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:52:55.5047222Z\",\r\n \"modifiedOn\": \"2016-09-15T23:53:10.1035284Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5cc0147d9df04f79b3a2aa3357280a10/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0119\",\r\n \"name\": \"testWS-0119\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:53:14.0763576Z\",\r\n \"modifiedOn\": \"2016-09-15T23:53:22.0746661Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d01ae50e28f44fa9b56ef6d9297e2278/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0120\",\r\n \"name\": \"testWS-0120\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:53:24.8410585Z\",\r\n \"modifiedOn\": \"2016-09-15T23:53:37.5585403Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1f0630664ff14b428cf2146c9be901f5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0121\",\r\n \"name\": \"testWS-0121\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:53:45.2098336Z\",\r\n \"modifiedOn\": \"2016-09-15T23:53:57.0400311Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/abd125a80df84fe2899a8552403d33fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0122\",\r\n \"name\": \"testWS-0122\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:54:13.4532963Z\",\r\n \"modifiedOn\": \"2016-09-15T23:54:26.9042257Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/51a4c2c23d714959acad18d6a51b4477/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0123\",\r\n \"name\": \"testWS-0123\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:54:29.1016718Z\",\r\n \"modifiedOn\": \"2016-09-15T23:54:39.7401533Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d7c97452043045df8c5d95158b465883/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0124\",\r\n \"name\": \"testWS-0124\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:54:43.0379924Z\",\r\n \"modifiedOn\": \"2016-09-15T23:54:57.4181156Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4c3df6278f14d84a494cf2eff82d529/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0125\",\r\n \"name\": \"testWS-0125\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:54:58.8336312Z\",\r\n \"modifiedOn\": \"2016-09-15T23:55:09.6262422Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/98a33cd5b0864058941c3d877a4599c7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0126\",\r\n \"name\": \"testWS-0126\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:55:12.8054128Z\",\r\n \"modifiedOn\": \"2016-09-15T23:55:26.0554324Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/782bc3f409b14d4d8f0c7b324ce411e9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0127\",\r\n \"name\": \"testWS-0127\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:55:31.4587902Z\",\r\n \"modifiedOn\": \"2016-09-15T23:55:46.8210673Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/572434b1b4f2409b9159c6c95fb7655f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0128\",\r\n \"name\": \"testWS-0128\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:55:53.0068823Z\",\r\n \"modifiedOn\": \"2016-09-15T23:56:04.8735488Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c55c94d50b684aa5924f446a6a414479/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0129\",\r\n \"name\": \"testWS-0129\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:56:14.8255906Z\",\r\n \"modifiedOn\": \"2016-09-15T23:56:23.2429389Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42aab5980aac40d68ff632de02cb5f67/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0130\",\r\n \"name\": \"testWS-0130\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:56:25.0954521Z\",\r\n \"modifiedOn\": \"2016-09-15T23:56:38.0904185Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4c9d2a62af754b0b8fd5d232b3b82474/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0131\",\r\n \"name\": \"testWS-0131\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:56:42.802249Z\",\r\n \"modifiedOn\": \"2016-09-15T23:56:55.9905186Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/985921591b90477092162227ac5388cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0132\",\r\n \"name\": \"testWS-0132\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:01.1773175Z\",\r\n \"modifiedOn\": \"2016-09-15T23:57:15.3891153Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/11c1c23cf8504c43b098bcddab848625/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0133\",\r\n \"name\": \"testWS-0133\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:18.0665763Z\",\r\n \"modifiedOn\": \"2016-09-15T23:57:27.1142588Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42d227f7591f4bfe82221fb8203fd044/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0134\",\r\n \"name\": \"testWS-0134\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:28.8628478Z\",\r\n \"modifiedOn\": \"2016-09-15T23:57:37.7938155Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0686838b5a2e4ad2b081025743cd3a72/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0135\",\r\n \"name\": \"testWS-0135\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:40.8777785Z\",\r\n \"modifiedOn\": \"2016-09-15T23:57:50.9678497Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c25120909734bb5952482042fadbd1e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0136\",\r\n \"name\": \"testWS-0136\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:54.5175826Z\",\r\n \"modifiedOn\": \"2016-09-15T23:58:02.8981284Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ab1a7a3114a14b0e91880f03fbd72750/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0137\",\r\n \"name\": \"testWS-0137\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:58:06.4975842Z\",\r\n \"modifiedOn\": \"2016-09-15T23:58:18.4938809Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9533087cc02b4097ae85757bd2a1fd4d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0138\",\r\n \"name\": \"testWS-0138\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:58:25.0574496Z\",\r\n \"modifiedOn\": \"2016-09-15T23:58:33.894585Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/48e7e6dc39f242efb7b54e7f848a7062/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0139\",\r\n \"name\": \"testWS-0139\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:58:41.816857Z\",\r\n \"modifiedOn\": \"2016-09-15T23:58:58.3896039Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b6ae5d67828b4c0f8ddb686ff80652dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0140\",\r\n \"name\": \"testWS-0140\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:59:04.1693397Z\",\r\n \"modifiedOn\": \"2016-09-15T23:59:12.6300399Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b02eca5734774a35a3fe635923545da8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0141\",\r\n \"name\": \"testWS-0141\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:59:17.8620254Z\",\r\n \"modifiedOn\": \"2016-09-15T23:59:25.0377903Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9fe8b580c9a74a33af8bcda63a85b396/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0142\",\r\n \"name\": \"testWS-0142\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:59:30.4738469Z\",\r\n \"modifiedOn\": \"2016-09-15T23:59:42.0888616Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4f5af0c978e949199d17bc85440fbb59/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0143\",\r\n \"name\": \"testWS-0143\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:59:45.5530529Z\",\r\n \"modifiedOn\": \"2016-09-16T00:00:13.6357081Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/377892e968234eb69a21d9c0e0090539/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0144\",\r\n \"name\": \"testWS-0144\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:00:19.0389207Z\",\r\n \"modifiedOn\": \"2016-09-16T00:00:34.8094871Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e87f021ccb90426284d0760135f95078/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0145\",\r\n \"name\": \"testWS-0145\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:00:36.6548696Z\",\r\n \"modifiedOn\": \"2016-09-16T00:00:48.2766804Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/04085f862b384efaa96ab02a6e54e411/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0146\",\r\n \"name\": \"testWS-0146\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:00:50.9666328Z\",\r\n \"modifiedOn\": \"2016-09-16T00:01:01.9568851Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd516904bd6b4083a41f55e1e34dedeb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0147\",\r\n \"name\": \"testWS-0147\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:01:11.7873294Z\",\r\n \"modifiedOn\": \"2016-09-16T00:01:21.227995Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bcd91f9fe6754297b83e981e65eab3b8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0148\",\r\n \"name\": \"testWS-0148\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:01:30.1110485Z\",\r\n \"modifiedOn\": \"2016-09-16T00:01:40.6937811Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4c49e52517ac453586a9ccf87e0a1dbe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0149\",\r\n \"name\": \"testWS-0149\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:01:47.5096897Z\",\r\n \"modifiedOn\": \"2016-09-16T00:01:58.6100218Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/64f51fa0d7314cef95ce1067bff2d4b0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0150\",\r\n \"name\": \"testWS-0150\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:02:04.1982369Z\",\r\n \"modifiedOn\": \"2016-09-16T00:02:13.6254057Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec5614407f4b4563a7080b2e80e5e132/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0151\",\r\n \"name\": \"testWS-0151\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:02:17.6604646Z\",\r\n \"modifiedOn\": \"2016-09-16T00:02:30.7728274Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e89ff32d0c374691873be71611938ed8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0152\",\r\n \"name\": \"testWS-0152\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:02:35.6939859Z\",\r\n \"modifiedOn\": \"2016-09-16T00:02:47.5641754Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d74aa0dbff524f3ea132e4b63759e343/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0153\",\r\n \"name\": \"testWS-0153\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:02:49.7228569Z\",\r\n \"modifiedOn\": \"2016-09-16T00:03:00.7267842Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b7c8eeabcd9b4de3bd641e97673c1ac6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0154\",\r\n \"name\": \"testWS-0154\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:03:04.9391232Z\",\r\n \"modifiedOn\": \"2016-09-16T00:03:12.2837641Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3152f7dba2824ed494d57ee76988e2d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0155\",\r\n \"name\": \"testWS-0155\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:03:15.733548Z\",\r\n \"modifiedOn\": \"2016-09-16T00:03:26.8080739Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2468ef626f2b40a594c156b996248821/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0156\",\r\n \"name\": \"testWS-0156\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:03:34.5803928Z\",\r\n \"modifiedOn\": \"2016-09-16T00:03:49.3226649Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/84b75465368048e9b8f5f5cd06fd18df/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0157\",\r\n \"name\": \"testWS-0157\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:03:53.2894624Z\",\r\n \"modifiedOn\": \"2016-09-16T00:04:06.388279Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0b6835fafbe84d37914491fce02f4c8b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0158\",\r\n \"name\": \"testWS-0158\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:04:10.043742Z\",\r\n \"modifiedOn\": \"2016-09-16T00:04:23.314993Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e683b48f93284630a3c683a83c45fda7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0159\",\r\n \"name\": \"testWS-0159\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:04:28.5265005Z\",\r\n \"modifiedOn\": \"2016-09-16T00:04:39.3052694Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a2539246ab4f4b9882996870aed70e69/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0160\",\r\n \"name\": \"testWS-0160\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:04:44.7636479Z\",\r\n \"modifiedOn\": \"2016-09-16T00:05:09.657504Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f22eadc85ee241109d8656690d757e6e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0161\",\r\n \"name\": \"testWS-0161\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:05:15.0511257Z\",\r\n \"modifiedOn\": \"2016-09-16T00:05:27.683093Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0f7445154a248748f56867657e98aa5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0162\",\r\n \"name\": \"testWS-0162\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:05:35.820218Z\",\r\n \"modifiedOn\": \"2016-09-16T00:05:51.5514973Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/af84053d13c0453092870156e84679a9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0163\",\r\n \"name\": \"testWS-0163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:05:55.6698868Z\",\r\n \"modifiedOn\": \"2016-09-16T00:06:08.615872Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/aba2e770c8564bde83b5db36b617657c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0164\",\r\n \"name\": \"testWS-0164\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:06:16.5600072Z\",\r\n \"modifiedOn\": \"2016-09-16T00:06:27.2758335Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8aff6465e3994dd68aa33bbc69dbce76/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0165\",\r\n \"name\": \"testWS-0165\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:06:28.3088596Z\",\r\n \"modifiedOn\": \"2016-09-16T00:06:39.9607648Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/98621f8291bc48e3aed8a4006e5b23e1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0166\",\r\n \"name\": \"testWS-0166\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:06:44.1693425Z\",\r\n \"modifiedOn\": \"2016-09-16T00:06:55.211114Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a0c9a3290eaf4326a762302dd27afe5d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0167\",\r\n \"name\": \"testWS-0167\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:06:58.8245543Z\",\r\n \"modifiedOn\": \"2016-09-16T00:07:14.5285266Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a31e2fcc6fc24fdbbf9927cbf1e3215c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0168\",\r\n \"name\": \"testWS-0168\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:07:19.5839759Z\",\r\n \"modifiedOn\": \"2016-09-16T00:07:34.1845473Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/350c493e77d349a6bc202fa31909b355/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0169\",\r\n \"name\": \"testWS-0169\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:07:40.4106585Z\",\r\n \"modifiedOn\": \"2016-09-16T00:07:48.356784Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5754fa0851bb46f6800eb31528deb382/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0170\",\r\n \"name\": \"testWS-0170\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:07:52.5231121Z\",\r\n \"modifiedOn\": \"2016-09-16T00:08:00.8348945Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/021c8b8db6834404882dcbc114c3b2dd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0171\",\r\n \"name\": \"testWS-0171\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:08:12.3753096Z\",\r\n \"modifiedOn\": \"2016-09-16T00:08:27.6697844Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/66981b45a7614c448ef9a54876b0e976/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0172\",\r\n \"name\": \"testWS-0172\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:08:33.6602153Z\",\r\n \"modifiedOn\": \"2016-09-16T00:08:45.2597436Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b701bf3b47f460a8976e25d2c05a2aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0173\",\r\n \"name\": \"testWS-0173\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:08:47.3980421Z\",\r\n \"modifiedOn\": \"2016-09-16T00:09:02.9146643Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7fe63ad915474d45bbd73ef8fdff87b3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0174\",\r\n \"name\": \"testWS-0174\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:09:08.4111962Z\",\r\n \"modifiedOn\": \"2016-09-16T00:09:18.8124485Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a09e1ce0be14493a6eeb246816dcda2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0175\",\r\n \"name\": \"testWS-0175\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:09:25.0400108Z\",\r\n \"modifiedOn\": \"2016-09-16T00:09:32.8068035Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d589b93d37324ef78f0a66ca90f8b37f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0176\",\r\n \"name\": \"testWS-0176\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:09:36.2896796Z\",\r\n \"modifiedOn\": \"2016-09-16T00:09:52.9324778Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7acb0613764b40c28f4d01f3a863ed07/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0177\",\r\n \"name\": \"testWS-0177\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:10:00.2396308Z\",\r\n \"modifiedOn\": \"2016-09-16T00:10:08.5901775Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2d530c9ba321439da167e81bb563991a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0178\",\r\n \"name\": \"testWS-0178\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:10:11.2275178Z\",\r\n \"modifiedOn\": \"2016-09-16T00:10:22.8130929Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fdf6d83bd7bd4771bd731c35ec93ba0b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0179\",\r\n \"name\": \"testWS-0179\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:10:30.918289Z\",\r\n \"modifiedOn\": \"2016-09-16T00:10:47.557459Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c085eca954d340399f5d88a81b3b846d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0180\",\r\n \"name\": \"testWS-0180\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:10:52.7987991Z\",\r\n \"modifiedOn\": \"2016-09-16T00:11:02.0205688Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/208398c6f05442759b63ebc5a0bc042a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0181\",\r\n \"name\": \"testWS-0181\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:11:05.1375861Z\",\r\n \"modifiedOn\": \"2016-09-16T00:11:16.1135609Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7c138ac7e5364073ab165513f7fc837c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0182\",\r\n \"name\": \"testWS-0182\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:11:23.2367207Z\",\r\n \"modifiedOn\": \"2016-09-16T00:11:39.5349009Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dddac5200d4e414e83480864f9a9aef8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0183\",\r\n \"name\": \"testWS-0183\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:11:46.7891313Z\",\r\n \"modifiedOn\": \"2016-09-16T00:11:55.653046Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fba009856d544b09810bf2fb9f038ee5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0184\",\r\n \"name\": \"testWS-0184\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:12:03.2744701Z\",\r\n \"modifiedOn\": \"2016-09-16T00:12:15.1758111Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b41297043474fee8377342b36010afe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0185\",\r\n \"name\": \"testWS-0185\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:12:21.4897613Z\",\r\n \"modifiedOn\": \"2016-09-16T00:12:31.3321286Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8ba4473b2e8b429aa822987f8eb7bcdc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0186\",\r\n \"name\": \"testWS-0186\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:12:38.0297716Z\",\r\n \"modifiedOn\": \"2016-09-16T00:12:54.8913067Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1428a29530414257b22daa5402b22a38/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0187\",\r\n \"name\": \"testWS-0187\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:13:01.5504187Z\",\r\n \"modifiedOn\": \"2016-09-16T00:13:21.6036123Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/12537509ed634f74969e2aa3a7af4b1a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0188\",\r\n \"name\": \"testWS-0188\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:13:22.9729107Z\",\r\n \"modifiedOn\": \"2016-09-16T00:13:35.0704879Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0b0c33430bf3461bacf31da40c85e12c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0189\",\r\n \"name\": \"testWS-0189\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:13:39.5615481Z\",\r\n \"modifiedOn\": \"2016-09-16T00:13:56.0570973Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7eea66dda92b4374a83051e882787487/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0190\",\r\n \"name\": \"testWS-0190\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:14:03.8967016Z\",\r\n \"modifiedOn\": \"2016-09-16T00:14:16.4244083Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/09102be98c3f4a98a059e659964875fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0191\",\r\n \"name\": \"testWS-0191\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:14:18.2960394Z\",\r\n \"modifiedOn\": \"2016-09-16T00:14:32.7998155Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/68ad71eb2de14cc298bf17eee1824781/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0192\",\r\n \"name\": \"testWS-0192\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:14:39.4232508Z\",\r\n \"modifiedOn\": \"2016-09-16T00:14:47.5878905Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ece322dbbcd741298024436408a1dca2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0193\",\r\n \"name\": \"testWS-0193\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:14:49.4812214Z\",\r\n \"modifiedOn\": \"2016-09-16T00:15:07.4665816Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5700d22685114f059cd178ac95b29017/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0194\",\r\n \"name\": \"testWS-0194\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:15:14.4789439Z\",\r\n \"modifiedOn\": \"2016-09-16T00:15:25.0001419Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/92a746491c404136a82cbd82f7119a72/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0195\",\r\n \"name\": \"testWS-0195\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:15:32.8057078Z\",\r\n \"modifiedOn\": \"2016-09-16T00:15:41.2453992Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cbe25579d99e4f64b48f2c862e9a3cc9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0196\",\r\n \"name\": \"testWS-0196\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:15:41.3390932Z\",\r\n \"modifiedOn\": \"2016-09-16T00:15:56.9527219Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/220fa9307f4f49629632b291442315a5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0197\",\r\n \"name\": \"testWS-0197\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:15:59.1118211Z\",\r\n \"modifiedOn\": \"2016-09-16T00:16:11.1391508Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/91b909bdf99942459144319aa7b03f36/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0198\",\r\n \"name\": \"testWS-0198\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:16:12.8493535Z\",\r\n \"modifiedOn\": \"2016-09-16T00:16:24.9864207Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d55130b1a6cb4a5a806d98c4c0c30f09/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0199\",\r\n \"name\": \"testWS-0199\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:16:25.6726603Z\",\r\n \"modifiedOn\": \"2016-09-16T00:16:41.1017599Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2207df9aadd449abb3e7481fac63bd12/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0200\",\r\n \"name\": \"testWS-0200\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:51:38.0484078Z\",\r\n \"modifiedOn\": \"2016-09-16T05:51:50.2778499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc2b3f3720fc4c9ea7a47e602ed3707c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0201\",\r\n \"name\": \"testWS-0201\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:51:53.6727252Z\",\r\n \"modifiedOn\": \"2016-09-16T05:52:11.0524366Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c358ac99367048bcbf1fb52ab67ecb53/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0202\",\r\n \"name\": \"testWS-0202\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:52:11.7841448Z\",\r\n \"modifiedOn\": \"2016-09-16T05:52:24.4086821Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/00a3c7acbb2d4f07bc21b8bf483d71c5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0203\",\r\n \"name\": \"testWS-0203\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:52:27.6241926Z\",\r\n \"modifiedOn\": \"2016-09-16T05:52:39.2791731Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b108982e198d48828cd016589c4698cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0204\",\r\n \"name\": \"testWS-0204\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:52:43.6322447Z\",\r\n \"modifiedOn\": \"2016-09-16T05:52:58.0247349Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d2030ca4fd748d080b2378e3d01d340/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0205\",\r\n \"name\": \"testWS-0205\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:53:03.9381167Z\",\r\n \"modifiedOn\": \"2016-09-16T05:53:19.6824714Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60107eadb18b49b581d6e6843defefc0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0206\",\r\n \"name\": \"testWS-0206\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:53:25.6405979Z\",\r\n \"modifiedOn\": \"2016-09-16T05:53:39.8562424Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f53b6ac1477a4981a665471fc4d27008/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0207\",\r\n \"name\": \"testWS-0207\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:53:45.0909651Z\",\r\n \"modifiedOn\": \"2016-09-16T05:53:58.0884728Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/068553f6165a45b8acc9e8cc7eb67401/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0208\",\r\n \"name\": \"testWS-0208\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:53:59.9175447Z\",\r\n \"modifiedOn\": \"2016-09-16T05:54:13.4874854Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3d425fb1df354c238ae2bc76d204f741/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0209\",\r\n \"name\": \"testWS-0209\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:54:20.1892723Z\",\r\n \"modifiedOn\": \"2016-09-16T05:54:32.2148096Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/98a547e8d37547189af12406ed481f67/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0210\",\r\n \"name\": \"testWS-0210\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:54:37.5144277Z\",\r\n \"modifiedOn\": \"2016-09-16T05:54:50.4632021Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2a1ac9eb6fb4b0d8d86dbebfd15d738/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0211\",\r\n \"name\": \"testWS-0211\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:54:54.9615086Z\",\r\n \"modifiedOn\": \"2016-09-16T05:55:09.3362026Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1a09f7e7759741ac96fcc60f3ba59ea9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0212\",\r\n \"name\": \"testWS-0212\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:55:12.9312489Z\",\r\n \"modifiedOn\": \"2016-09-16T05:55:26.390959Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3137ac78a89b47d59d1b002cf35656e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0213\",\r\n \"name\": \"testWS-0213\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:55:32.0700469Z\",\r\n \"modifiedOn\": \"2016-09-16T05:55:51.164628Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3e330bb5e9f6407387f5a9036843007e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0214\",\r\n \"name\": \"testWS-0214\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:55:54.7107847Z\",\r\n \"modifiedOn\": \"2016-09-16T05:56:09.127636Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/de9310ba80c14278bdb50b6eaa29cb86/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0215\",\r\n \"name\": \"testWS-0215\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:56:12.8914577Z\",\r\n \"modifiedOn\": \"2016-09-16T05:56:23.5634419Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/03c115d87b4e44bf9da7f402bdabe3b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0216\",\r\n \"name\": \"testWS-0216\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:56:31.0933038Z\",\r\n \"modifiedOn\": \"2016-09-16T05:56:44.0800224Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9785d2e90c1f418fb905fe742f32f858/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0217\",\r\n \"name\": \"testWS-0217\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:56:47.4244772Z\",\r\n \"modifiedOn\": \"2016-09-16T05:57:01.3321223Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5981e20772f34a1bbff159a3a3d938f4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0218\",\r\n \"name\": \"testWS-0218\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:57:05.0529209Z\",\r\n \"modifiedOn\": \"2016-09-16T05:57:18.2877832Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17fea952c97e46339897bf75e06c32c0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0219\",\r\n \"name\": \"testWS-0219\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:57:24.4557326Z\",\r\n \"modifiedOn\": \"2016-09-16T05:57:33.145721Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9315a1b0ad24415fae644b19ba3aad0e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0220\",\r\n \"name\": \"testWS-0220\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:57:35.7938536Z\",\r\n \"modifiedOn\": \"2016-09-16T05:57:52.643419Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/095bc8fd324b48d8b7ef46cfc5c7e2cb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0221\",\r\n \"name\": \"testWS-0221\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:57:59.6850532Z\",\r\n \"modifiedOn\": \"2016-09-16T05:58:10.1321084Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/71c9641c254140c4addb02482f3c926d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0222\",\r\n \"name\": \"testWS-0222\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:58:14.5211463Z\",\r\n \"modifiedOn\": \"2016-09-16T05:58:28.6840694Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/163a6b314e9c4e2286a9443a6d52a0b5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0223\",\r\n \"name\": \"testWS-0223\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:58:35.8572683Z\",\r\n \"modifiedOn\": \"2016-09-16T05:58:53.5058212Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c75dbcce0a5c476099a7a24f7c351cbd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0224\",\r\n \"name\": \"testWS-0224\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:58:59.1660378Z\",\r\n \"modifiedOn\": \"2016-09-16T05:59:09.8521312Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/64ff589e5f224a1b9cadb5a9e1b5bb3a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0225\",\r\n \"name\": \"testWS-0225\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:59:13.2690961Z\",\r\n \"modifiedOn\": \"2016-09-16T05:59:27.085568Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d65c551ba02948a38f2f78af586cd674/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0226\",\r\n \"name\": \"testWS-0226\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:59:30.7669776Z\",\r\n \"modifiedOn\": \"2016-09-16T05:59:43.9543256Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e8d8f7ef8ad5447ab5d838401be7d468/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0227\",\r\n \"name\": \"testWS-0227\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:59:49.3125441Z\",\r\n \"modifiedOn\": \"2016-09-16T06:00:06.6627305Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e104f0448b10482fa96348dcb2951f7c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0228\",\r\n \"name\": \"testWS-0228\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:00:17.3264061Z\",\r\n \"modifiedOn\": \"2016-09-16T06:00:36.7339269Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/af336317322c435d8b58ca1fbff9c36e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0229\",\r\n \"name\": \"testWS-0229\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:00:39.3807297Z\",\r\n \"modifiedOn\": \"2016-09-16T06:00:51.6367344Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/57c9d9c63ae7490192bc9edf623a44ac/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0230\",\r\n \"name\": \"testWS-0230\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:00:57.8807006Z\",\r\n \"modifiedOn\": \"2016-09-16T06:01:12.0750267Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/beae12599f2844f194c800a17fc4f2a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0231\",\r\n \"name\": \"testWS-0231\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:01:15.6743811Z\",\r\n \"modifiedOn\": \"2016-09-16T06:01:26.4516153Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d8c12750bab4270b0e0e1b1866aa4cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0232\",\r\n \"name\": \"testWS-0232\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:01:34.2508929Z\",\r\n \"modifiedOn\": \"2016-09-16T06:01:47.4527881Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d0f3d44861544c388c31fa1b354513f8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0233\",\r\n \"name\": \"testWS-0233\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:01:52.0160275Z\",\r\n \"modifiedOn\": \"2016-09-16T06:02:02.6905045Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6777ab5b6af2448399fd008104393161/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0234\",\r\n \"name\": \"testWS-0234\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:02:09.1128273Z\",\r\n \"modifiedOn\": \"2016-09-16T06:02:16.9307728Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f5999954f430462ebc57c069bb382d0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0235\",\r\n \"name\": \"testWS-0235\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:02:21.2281419Z\",\r\n \"modifiedOn\": \"2016-09-16T06:02:38.2760978Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e53ece82c55c4207a89b853338c20319/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0236\",\r\n \"name\": \"testWS-0236\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:02:41.197668Z\",\r\n \"modifiedOn\": \"2016-09-16T06:02:53.4766659Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f48b41d825dc43d2b4c47fc06f7399fd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0237\",\r\n \"name\": \"testWS-0237\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:02:55.8135003Z\",\r\n \"modifiedOn\": \"2016-09-16T06:03:08.3935002Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/95f10f4fc76d4cc1a55027653345b7b3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0238\",\r\n \"name\": \"testWS-0238\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:03:12.3371608Z\",\r\n \"modifiedOn\": \"2016-09-16T06:03:24.2699387Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bf6f502a309c4024bff5b8594b17f4a1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0239\",\r\n \"name\": \"testWS-0239\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:03:26.821403Z\",\r\n \"modifiedOn\": \"2016-09-16T06:03:36.8232887Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/290d22f2e4574682bd37a2c8d7b51082/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0240\",\r\n \"name\": \"testWS-0240\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:03:42.2057611Z\",\r\n \"modifiedOn\": \"2016-09-16T06:03:57.4405207Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b6f18e2313da46c193256ceb3495a3ff/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0241\",\r\n \"name\": \"testWS-0241\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:04:02.0968135Z\",\r\n \"modifiedOn\": \"2016-09-16T06:04:12.0006756Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/919ee04e857545a09dc140ffac10d579/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0242\",\r\n \"name\": \"testWS-0242\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:04:19.4254228Z\",\r\n \"modifiedOn\": \"2016-09-16T06:04:30.3314708Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ef09c320be94977b49ca735edc65dc3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0243\",\r\n \"name\": \"testWS-0243\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:04:36.8801012Z\",\r\n \"modifiedOn\": \"2016-09-16T06:04:50.5544841Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29874670ca184c9683f4343147544c32/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0244\",\r\n \"name\": \"testWS-0244\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:04:54.586557Z\",\r\n \"modifiedOn\": \"2016-09-16T06:05:04.9025116Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddb96b94d57e4213895ea862111ddc3b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0245\",\r\n \"name\": \"testWS-0245\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:05:11.9350403Z\",\r\n \"modifiedOn\": \"2016-09-16T06:05:23.6371172Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f48eb9b8ebac4a18b2b9029c94abd717/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0246\",\r\n \"name\": \"testWS-0246\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:05:28.7515923Z\",\r\n \"modifiedOn\": \"2016-09-16T06:05:41.9543087Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8328ad4d3fd4aee9d3e17297a97fd9a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0247\",\r\n \"name\": \"testWS-0247\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:05:46.1966517Z\",\r\n \"modifiedOn\": \"2016-09-16T06:05:56.9095064Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4161bec5b3d4af08ddf08ccc018e0f4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0248\",\r\n \"name\": \"testWS-0248\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:05:57.0337246Z\",\r\n \"modifiedOn\": \"2016-09-16T06:06:13.1932677Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3c5d708cd1204797879351ea11b9c8b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0249\",\r\n \"name\": \"testWS-0249\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:06:17.1666056Z\",\r\n \"modifiedOn\": \"2016-09-16T06:06:31.5650686Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b5e11730f0fe4a5180464e6ce03bcdf8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0250\",\r\n \"name\": \"testWS-0250\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:06:35.2404234Z\",\r\n \"modifiedOn\": \"2016-09-16T06:06:44.3183057Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/70da47d027d04b9486ee32735e36d48f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0251\",\r\n \"name\": \"testWS-0251\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:06:47.1797079Z\",\r\n \"modifiedOn\": \"2016-09-16T06:06:58.4692883Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bf0c361c7ed04fe9a837fb89f8fef99c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0252\",\r\n \"name\": \"testWS-0252\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:07:04.1884751Z\",\r\n \"modifiedOn\": \"2016-09-16T06:07:20.0139379Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ac56202d4eed40dd93cd0fc267fa6964/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0253\",\r\n \"name\": \"testWS-0253\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:07:28.0988666Z\",\r\n \"modifiedOn\": \"2016-09-16T06:07:40.8511577Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0844c77ef07748b4a6c2c917727731b6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0254\",\r\n \"name\": \"testWS-0254\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:07:44.808001Z\",\r\n \"modifiedOn\": \"2016-09-16T06:07:55.7231337Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/adb36df8c3414f7095a33316a5b3989c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0255\",\r\n \"name\": \"testWS-0255\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:07:55.8173223Z\",\r\n \"modifiedOn\": \"2016-09-16T06:08:14.3777499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a1fb345395448f5ab1f7d81604c427b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0256\",\r\n \"name\": \"testWS-0256\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:08:19.964004Z\",\r\n \"modifiedOn\": \"2016-09-16T06:08:29.9962165Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b039cdf31fc744e2ab97b415e5d762bd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0257\",\r\n \"name\": \"testWS-0257\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:08:30.688409Z\",\r\n \"modifiedOn\": \"2016-09-16T06:08:44.8756581Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/232903ed41c841058548c02963c552d6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0258\",\r\n \"name\": \"testWS-0258\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:08:50.7115849Z\",\r\n \"modifiedOn\": \"2016-09-16T06:09:03.5523722Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/425746e84bae4ced810d85347683b4be/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0259\",\r\n \"name\": \"testWS-0259\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:09:10.3345308Z\",\r\n \"modifiedOn\": \"2016-09-16T06:09:18.1294395Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8b4f32e48327489b83dd9d64f5ecfd57/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0260\",\r\n \"name\": \"testWS-0260\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:09:20.6427063Z\",\r\n \"modifiedOn\": \"2016-09-16T06:09:32.3459304Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/909b3a3a5d054a0fb0f48da88db9cfc8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0261\",\r\n \"name\": \"testWS-0261\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:09:33.2733337Z\",\r\n \"modifiedOn\": \"2016-09-16T06:09:50.1268606Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/52ec15f7d93d4f71b9f5f62f3306c9b1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0262\",\r\n \"name\": \"testWS-0262\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:09:51.9845175Z\",\r\n \"modifiedOn\": \"2016-09-16T06:10:05.7706234Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1649a12868094eda979e66ff74d9ceb3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0263\",\r\n \"name\": \"testWS-0263\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:10:13.5803267Z\",\r\n \"modifiedOn\": \"2016-09-16T06:10:37.9152501Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7d0c2cb99d214ca49c92719a6910613c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0264\",\r\n \"name\": \"testWS-0264\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:10:38.9841361Z\",\r\n \"modifiedOn\": \"2016-09-16T06:10:52.8158246Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b9aedd5fe14a4125810a406960e53f29/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0265\",\r\n \"name\": \"testWS-0265\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:10:57.1776635Z\",\r\n \"modifiedOn\": \"2016-09-16T06:11:22.0001251Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fced477bef714b6ead772c8d40e27747/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0266\",\r\n \"name\": \"testWS-0266\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:11:29.4853527Z\",\r\n \"modifiedOn\": \"2016-09-16T06:11:45.0250815Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/401da824e5b14059b3e0722c60a4e0a6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0267\",\r\n \"name\": \"testWS-0267\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:11:51.0181026Z\",\r\n \"modifiedOn\": \"2016-09-16T06:12:12.1747155Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/27a4b3cdb176425d9b378c3611459701/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0268\",\r\n \"name\": \"testWS-0268\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:12:12.7267492Z\",\r\n \"modifiedOn\": \"2016-09-16T06:12:32.6155732Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29c2d19a0d4a4644bcf50b49c2264816/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0269\",\r\n \"name\": \"testWS-0269\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:12:39.2597406Z\",\r\n \"modifiedOn\": \"2016-09-16T06:12:54.0448508Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3844e8fa05eb447aba980002a9adb7cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0270\",\r\n \"name\": \"testWS-0270\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:13:01.5230388Z\",\r\n \"modifiedOn\": \"2016-09-16T06:13:09.7128174Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ed66fd98db974fd88847008092f69ff8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0271\",\r\n \"name\": \"testWS-0271\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:13:12.2791227Z\",\r\n \"modifiedOn\": \"2016-09-16T06:13:26.7825201Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/889f6abc06bc4e71a1bd6e06b02abe95/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0272\",\r\n \"name\": \"testWS-0272\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:13:30.2200009Z\",\r\n \"modifiedOn\": \"2016-09-16T06:15:09.8047975Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c9f43eeab142417c986f72eaba73f2c8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0273\",\r\n \"name\": \"testWS-0273\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:15:11.2290976Z\",\r\n \"modifiedOn\": \"2016-09-16T06:15:29.52947Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c4e2854b1ce4ee1b008074386fa58ce/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0274\",\r\n \"name\": \"testWS-0274\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:15:37.5292223Z\",\r\n \"modifiedOn\": \"2016-09-16T06:16:04.5319161Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa6995a3559844bdbb8488df9671741c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0275\",\r\n \"name\": \"testWS-0275\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:16:11.09256Z\",\r\n \"modifiedOn\": \"2016-09-16T06:16:28.9643431Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa8db469c05b4218a1ba9941156578fd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0276\",\r\n \"name\": \"testWS-0276\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:16:34.2447951Z\",\r\n \"modifiedOn\": \"2016-09-16T06:16:41.8753668Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42067f6e791646919f331c22a3197e15/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0277\",\r\n \"name\": \"testWS-0277\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:16:45.746397Z\",\r\n \"modifiedOn\": \"2016-09-16T06:17:30.0623037Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/de1a6a7d531f4ec78574a2a7dbad4425/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0278\",\r\n \"name\": \"testWS-0278\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:17:32.5638788Z\",\r\n \"modifiedOn\": \"2016-09-16T06:18:04.1096958Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8d92750e421d48e6b657b81bbb169de5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0279\",\r\n \"name\": \"testWS-0279\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:18:08.763119Z\",\r\n \"modifiedOn\": \"2016-09-16T06:18:19.4861397Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1187dc46e0234282b2f3510f0c649a7e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0280\",\r\n \"name\": \"testWS-0280\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:18:26.0694816Z\",\r\n \"modifiedOn\": \"2016-09-16T06:18:42.0300106Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b39544ab20644d990a40346a65f9d30/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0281\",\r\n \"name\": \"testWS-0281\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:18:47.8647675Z\",\r\n \"modifiedOn\": \"2016-09-16T06:19:01.0631401Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f53205990b754673b237480d6809eb68/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0282\",\r\n \"name\": \"testWS-0282\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:19:05.1998342Z\",\r\n \"modifiedOn\": \"2016-09-16T06:19:13.6736789Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8caead0e8dfe4dce9b0c08f7ce050879/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0283\",\r\n \"name\": \"testWS-0283\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:19:17.5989702Z\",\r\n \"modifiedOn\": \"2016-09-16T06:19:40.1631881Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1196824d40fd4272b07d1ada616acea4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0284\",\r\n \"name\": \"testWS-0284\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:19:46.6608085Z\",\r\n \"modifiedOn\": \"2016-09-16T06:20:22.032161Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9d4a5d683d5342c38e1fd16a9771c680/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0285\",\r\n \"name\": \"testWS-0285\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:20:26.0277713Z\",\r\n \"modifiedOn\": \"2016-09-16T06:20:41.3024431Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f6e0e35bf3cc4514ac9054c48d2823e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0286\",\r\n \"name\": \"testWS-0286\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:20:49.1920458Z\",\r\n \"modifiedOn\": \"2016-09-16T06:21:59.0527539Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77e3fa72d9b74c999d39041bf28335e1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0287\",\r\n \"name\": \"testWS-0287\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:22:04.5132125Z\",\r\n \"modifiedOn\": \"2016-09-16T06:22:18.54217Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7f497c2c22474dec8cd74c72d3d098ed/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0288\",\r\n \"name\": \"testWS-0288\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:22:21.7754291Z\",\r\n \"modifiedOn\": \"2016-09-16T06:22:33.7046639Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/079c3206eb0142f19a3edd4a0aeebedf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0289\",\r\n \"name\": \"testWS-0289\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:22:39.4625674Z\",\r\n \"modifiedOn\": \"2016-09-16T06:22:54.5412038Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7ac40003612f47f486e093e34ba8130a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0290\",\r\n \"name\": \"testWS-0290\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:22:58.0249814Z\",\r\n \"modifiedOn\": \"2016-09-16T06:23:08.0530039Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3f44bd181c58430598936c516ca7d84c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0291\",\r\n \"name\": \"testWS-0291\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:23:15.3067871Z\",\r\n \"modifiedOn\": \"2016-09-16T06:23:26.0642643Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e51786ea80c54f3faf48cf73026d48b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0292\",\r\n \"name\": \"testWS-0292\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:23:33.2998456Z\",\r\n \"modifiedOn\": \"2016-09-16T06:23:42.2994334Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/602f48ad4c574874a4b90e0375775be2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0293\",\r\n \"name\": \"testWS-0293\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:23:42.8603657Z\",\r\n \"modifiedOn\": \"2016-09-16T06:23:57.2353817Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/724b7097ea71493694b93deada32008a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0294\",\r\n \"name\": \"testWS-0294\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:24:00.2940931Z\",\r\n \"modifiedOn\": \"2016-09-16T06:24:20.0101347Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/64fe11dd0a4f4c079a238671c5e5342b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0295\",\r\n \"name\": \"testWS-0295\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:24:25.6497846Z\",\r\n \"modifiedOn\": \"2016-09-16T06:24:39.9641963Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/41ec4bf570dc4a919c2205b78116cf15/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0296\",\r\n \"name\": \"testWS-0296\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:24:41.3676464Z\",\r\n \"modifiedOn\": \"2016-09-16T06:24:59.4024065Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b023f0bba60b4da28a6b6856d03afb2f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0297\",\r\n \"name\": \"testWS-0297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:25:03.7789556Z\",\r\n \"modifiedOn\": \"2016-09-16T06:25:15.2391307Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/59010d1826d14970b1d5231e54bdbba8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0298\",\r\n \"name\": \"testWS-0298\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:25:22.3482383Z\",\r\n \"modifiedOn\": \"2016-09-16T06:25:40.2697038Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/acc5525f509c4023b3b36dea67410af1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0299\",\r\n \"name\": \"testWS-0299\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:25:42.3893498Z\",\r\n \"modifiedOn\": \"2016-09-16T06:26:01.0967746Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a7291921d5c473e890a0b16088adf3a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0300\",\r\n \"name\": \"testWS-0300\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:47:05.1614272Z\",\r\n \"modifiedOn\": \"2016-09-16T17:47:17.0936086Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/926044ac8fa840edb34ab9320361dd18/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0301\",\r\n \"name\": \"testWS-0301\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:47:18.4793913Z\",\r\n \"modifiedOn\": \"2016-09-16T17:47:33.5389926Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e6f6427adcbe4ca6a808ed9b32007fb4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0302\",\r\n \"name\": \"testWS-0302\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:47:38.3366013Z\",\r\n \"modifiedOn\": \"2016-09-16T17:47:56.1581338Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/25eebd48f596462c9bf71c4910a2a752/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0303\",\r\n \"name\": \"testWS-0303\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:48:03.2768119Z\",\r\n \"modifiedOn\": \"2016-09-16T17:48:13.1157562Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8eec45a7f47441ab9ca45ed1246f7eb2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0304\",\r\n \"name\": \"testWS-0304\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:48:23.2488248Z\",\r\n \"modifiedOn\": \"2016-09-16T17:48:32.9217193Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0735b58a0ca8489398d977c91164a341/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0305\",\r\n \"name\": \"testWS-0305\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:48:37.7445851Z\",\r\n \"modifiedOn\": \"2016-09-16T17:48:52.9786909Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ce8c679409f64100a5b8201c5f6bc33f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0306\",\r\n \"name\": \"testWS-0306\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:48:58.12541Z\",\r\n \"modifiedOn\": \"2016-09-16T17:49:09.566242Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddb77f9cf25c422aa312b7261e0d4ec7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0307\",\r\n \"name\": \"testWS-0307\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:49:13.67932Z\",\r\n \"modifiedOn\": \"2016-09-16T17:49:25.8926515Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d8cb9863fd3545fb9e6984449e1fe389/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0308\",\r\n \"name\": \"testWS-0308\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:49:27.0692695Z\",\r\n \"modifiedOn\": \"2016-09-16T17:49:46.9555417Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/57560277e1ed44e9997dd561b76c8497/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0309\",\r\n \"name\": \"testWS-0309\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:49:50.3339283Z\",\r\n \"modifiedOn\": \"2016-09-16T17:50:03.906442Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2474ccaab2714088b2f4d042bd5b6b05/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0310\",\r\n \"name\": \"testWS-0310\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:50:09.030704Z\",\r\n \"modifiedOn\": \"2016-09-16T17:50:25.2441446Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/de297a8324dc4cf3bace6b56f41b6829/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0311\",\r\n \"name\": \"testWS-0311\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:50:30.8605423Z\",\r\n \"modifiedOn\": \"2016-09-16T17:50:44.3010055Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0ed9143ac5044c72871c3b13719fc052/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0312\",\r\n \"name\": \"testWS-0312\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:50:52.9206137Z\",\r\n \"modifiedOn\": \"2016-09-16T17:51:07.9827015Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f3c953f841284a13b70e64fb92455fae/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0313\",\r\n \"name\": \"testWS-0313\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:51:09.7229722Z\",\r\n \"modifiedOn\": \"2016-09-16T17:51:22.5449033Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9f7a3ace279f408babac5e453820a363/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0314\",\r\n \"name\": \"testWS-0314\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:51:28.2767079Z\",\r\n \"modifiedOn\": \"2016-09-16T17:51:39.7483895Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/926fca4646104b81a25fdb1891aa4359/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0315\",\r\n \"name\": \"testWS-0315\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:51:42.6989694Z\",\r\n \"modifiedOn\": \"2016-09-16T17:51:55.4359244Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/20dbf0d8ca35448b8fd1795af3847704/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0316\",\r\n \"name\": \"testWS-0316\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:51:57.998296Z\",\r\n \"modifiedOn\": \"2016-09-16T17:52:14.6148432Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3191a1acec804b9e96aa90e4517fe941/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0317\",\r\n \"name\": \"testWS-0317\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:52:19.0789491Z\",\r\n \"modifiedOn\": \"2016-09-16T17:52:28.3960796Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/18545d9fdd85402ea06882d55a1ac8ee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0318\",\r\n \"name\": \"testWS-0318\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:52:35.8409001Z\",\r\n \"modifiedOn\": \"2016-09-16T17:52:49.1899961Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b20dc3dce774425cab7c632026725e29/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0319\",\r\n \"name\": \"testWS-0319\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:52:52.3553681Z\",\r\n \"modifiedOn\": \"2016-09-16T17:53:08.5906033Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc703697dcd94941b18935f68a9178d4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0320\",\r\n \"name\": \"testWS-0320\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:53:12.7622441Z\",\r\n \"modifiedOn\": \"2016-09-16T17:53:24.7278794Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a0c2619296e446b6a90715e1943efe53/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0321\",\r\n \"name\": \"testWS-0321\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:53:29.9208123Z\",\r\n \"modifiedOn\": \"2016-09-16T17:53:46.4539936Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b4657da9460b47139c2d4d4b12da8770/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0322\",\r\n \"name\": \"testWS-0322\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:53:50.9104896Z\",\r\n \"modifiedOn\": \"2016-09-16T17:54:02.7561208Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b5275db7b644400d8e378d1e8ec29984/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0323\",\r\n \"name\": \"testWS-0323\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:54:03.9136757Z\",\r\n \"modifiedOn\": \"2016-09-16T17:54:22.8753361Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8c7ef887bc7a4fa68c119a106345a2bd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0324\",\r\n \"name\": \"testWS-0324\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:54:28.1414627Z\",\r\n \"modifiedOn\": \"2016-09-16T17:54:39.6512895Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3a394d6b576043b8b009858295966a2e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0325\",\r\n \"name\": \"testWS-0325\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:54:46.140861Z\",\r\n \"modifiedOn\": \"2016-09-16T17:54:56.8590042Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/69fa127137fa4e3fa9da65c90c351722/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0326\",\r\n \"name\": \"testWS-0326\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:55:02.0263801Z\",\r\n \"modifiedOn\": \"2016-09-16T17:55:17.4056773Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c551499e302b4541b379fe08e05a8e54/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0327\",\r\n \"name\": \"testWS-0327\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:55:21.5271489Z\",\r\n \"modifiedOn\": \"2016-09-16T17:55:34.024405Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/296026183360470a84864800ad9ae09d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0328\",\r\n \"name\": \"testWS-0328\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:55:40.1444549Z\",\r\n \"modifiedOn\": \"2016-09-16T17:55:50.2593585Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/653f6e83ff30459b87e01bf1810be183/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0329\",\r\n \"name\": \"testWS-0329\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:55:56.9769355Z\",\r\n \"modifiedOn\": \"2016-09-16T17:56:18.4936627Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a66ecf0c9c7c431199d162a6486289d7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0330\",\r\n \"name\": \"testWS-0330\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:56:24.1500247Z\",\r\n \"modifiedOn\": \"2016-09-16T17:56:32.7992714Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/22fb8e4a3f594d7c84457365789a5d25/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0331\",\r\n \"name\": \"testWS-0331\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:56:33.1572254Z\",\r\n \"modifiedOn\": \"2016-09-16T17:56:46.7917491Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c5753914058f4214b3c8e3da740d863a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0332\",\r\n \"name\": \"testWS-0332\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:56:52.5649095Z\",\r\n \"modifiedOn\": \"2016-09-16T17:57:08.7642692Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0ed273cd7c1c45c0b268fb52941ce974/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0333\",\r\n \"name\": \"testWS-0333\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:57:15.9327204Z\",\r\n \"modifiedOn\": \"2016-09-16T17:57:28.8333227Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/379274958e8649d094f86a9927751f28/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0334\",\r\n \"name\": \"testWS-0334\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:57:34.1699644Z\",\r\n \"modifiedOn\": \"2016-09-16T17:57:52.3153524Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/aa2701f24ace4cf98e0012f48870ad4d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0335\",\r\n \"name\": \"testWS-0335\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:57:56.0674245Z\",\r\n \"modifiedOn\": \"2016-09-16T17:58:17.8637329Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b1401aeb647b49fb98a939ef586a27ae/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0336\",\r\n \"name\": \"testWS-0336\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:58:19.2357796Z\",\r\n \"modifiedOn\": \"2016-09-16T17:58:30.5358004Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/902e9afc78e1447e95b3a1e531f17a59/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0337\",\r\n \"name\": \"testWS-0337\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:58:34.2384439Z\",\r\n \"modifiedOn\": \"2016-09-16T17:58:44.847345Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/744e8b328de34dfc885e58089d3fd66e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0338\",\r\n \"name\": \"testWS-0338\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:58:53.3594254Z\",\r\n \"modifiedOn\": \"2016-09-16T17:59:04.0505226Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a3c8cd7b4394080b53df4ef820f80cb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0339\",\r\n \"name\": \"testWS-0339\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:59:09.9397204Z\",\r\n \"modifiedOn\": \"2016-09-16T17:59:20.3069814Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fb848af26a6946c992dae8a769cf6f11/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0340\",\r\n \"name\": \"testWS-0340\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:59:24.7327141Z\",\r\n \"modifiedOn\": \"2016-09-16T17:59:34.4183518Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe9d04139992430c8a179ead402005b2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0341\",\r\n \"name\": \"testWS-0341\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:59:39.1786617Z\",\r\n \"modifiedOn\": \"2016-09-16T17:59:55.3367728Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e81304633f3f4bf89994bd3dadbae348/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0342\",\r\n \"name\": \"testWS-0342\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:59:57.6626964Z\",\r\n \"modifiedOn\": \"2016-09-16T18:00:09.5681072Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/15ff001f09d54f888d01e8bbd3908e05/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0343\",\r\n \"name\": \"testWS-0343\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:00:12.5943428Z\",\r\n \"modifiedOn\": \"2016-09-16T18:00:24.3336209Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ef2f59134ea44d78e14c0368dba2690/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0344\",\r\n \"name\": \"testWS-0344\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:00:28.4358146Z\",\r\n \"modifiedOn\": \"2016-09-16T18:00:49.1171581Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6ffad35bdded4d72892a979c7accf2f5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0345\",\r\n \"name\": \"testWS-0345\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:00:53.6574411Z\",\r\n \"modifiedOn\": \"2016-09-16T18:01:01.8470157Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1dae52f6faf44648bf7e6dece36ddd3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0346\",\r\n \"name\": \"testWS-0346\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:01:05.5269368Z\",\r\n \"modifiedOn\": \"2016-09-16T18:01:18.2200789Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ba3a481a7a354da9b1fac644abf5ed18/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0347\",\r\n \"name\": \"testWS-0347\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:01:23.8761817Z\",\r\n \"modifiedOn\": \"2016-09-16T18:01:56.1994096Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/71bb7ad133bb4cc98968e6582ca8b642/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0348\",\r\n \"name\": \"testWS-0348\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:02:02.9089625Z\",\r\n \"modifiedOn\": \"2016-09-16T18:02:13.3142277Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa3c7ad255d047859ed77e5123bdd124/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0349\",\r\n \"name\": \"testWS-0349\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:02:20.3389488Z\",\r\n \"modifiedOn\": \"2016-09-16T18:02:34.3148168Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/30259ff0753a44ab915e3f96766e783c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0350\",\r\n \"name\": \"testWS-0350\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:02:37.5145586Z\",\r\n \"modifiedOn\": \"2016-09-16T18:02:47.0988036Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3750d42ffd7947549ed14e1a7f861934/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0351\",\r\n \"name\": \"testWS-0351\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:02:49.7628055Z\",\r\n \"modifiedOn\": \"2016-09-16T18:03:09.1085048Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/14373f469c354370872218806f667622/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0352\",\r\n \"name\": \"testWS-0352\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:03:11.2594728Z\",\r\n \"modifiedOn\": \"2016-09-16T18:03:25.5437811Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b1f804bfcbfe45b8bf8472e8cb657ea0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0353\",\r\n \"name\": \"testWS-0353\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:03:30.8021197Z\",\r\n \"modifiedOn\": \"2016-09-16T18:03:41.593391Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a90369e96fc24a6a984f9a082a5532fb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0354\",\r\n \"name\": \"testWS-0354\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:03:48.0417192Z\",\r\n \"modifiedOn\": \"2016-09-16T18:03:59.5020785Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df31259f570b4ae49dd4def0c50b8cd8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0355\",\r\n \"name\": \"testWS-0355\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:04:03.4038823Z\",\r\n \"modifiedOn\": \"2016-09-16T18:04:21.439618Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9d476096ecd14d33abd736d627d8e4aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0356\",\r\n \"name\": \"testWS-0356\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:04:30.8085781Z\",\r\n \"modifiedOn\": \"2016-09-16T18:04:40.7723184Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2d4f4a86e164febafe73b01fc44391c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0357\",\r\n \"name\": \"testWS-0357\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:04:47.6142288Z\",\r\n \"modifiedOn\": \"2016-09-16T18:05:02.2080642Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4d574e80f2bf438f9d39495ba8ca0773/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0358\",\r\n \"name\": \"testWS-0358\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:05:06.3324347Z\",\r\n \"modifiedOn\": \"2016-09-16T18:05:18.2370516Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/aff79281e2a94c1fb54716f9b56c79fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0359\",\r\n \"name\": \"testWS-0359\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:05:22.9843317Z\",\r\n \"modifiedOn\": \"2016-09-16T18:05:38.8568301Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3efaf4baa5ee44249e0652350b7eb777/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0360\",\r\n \"name\": \"testWS-0360\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:05:44.6314331Z\",\r\n \"modifiedOn\": \"2016-09-16T18:05:58.9689726Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2d34fe4a49404be986ffcd2710a14384/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0361\",\r\n \"name\": \"testWS-0361\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:06:01.8578933Z\",\r\n \"modifiedOn\": \"2016-09-16T18:06:13.4848504Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/178376964ba24e4494e680f6681f916b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0362\",\r\n \"name\": \"testWS-0362\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:06:21.8166835Z\",\r\n \"modifiedOn\": \"2016-09-16T18:06:29.2892989Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a9c423306ce64d5786355b3bd00a089c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0363\",\r\n \"name\": \"testWS-0363\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:06:33.9703985Z\",\r\n \"modifiedOn\": \"2016-09-16T18:06:45.3090177Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/410636ce675e45b1a949791cfeaad6fb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0364\",\r\n \"name\": \"testWS-0364\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:06:49.5074009Z\",\r\n \"modifiedOn\": \"2016-09-16T18:07:03.6612462Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a44813a52c8043a68c6244c88ab05ce4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0365\",\r\n \"name\": \"testWS-0365\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:07:08.2106135Z\",\r\n \"modifiedOn\": \"2016-09-16T18:07:20.1163346Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bbe3911d3add4b84aaccc892ede20725/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0366\",\r\n \"name\": \"testWS-0366\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:07:23.4861237Z\",\r\n \"modifiedOn\": \"2016-09-16T18:07:39.0867151Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1e1ef23d016412e9c4e9d5f516b5382/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0367\",\r\n \"name\": \"testWS-0367\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:07:43.7893336Z\",\r\n \"modifiedOn\": \"2016-09-16T18:07:54.0449512Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/adacd60ce21e42d2a660ad9866497633/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0368\",\r\n \"name\": \"testWS-0368\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:08:02.1571881Z\",\r\n \"modifiedOn\": \"2016-09-16T18:08:10.6311302Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9c1b96562ed349869dcf802c681952fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0369\",\r\n \"name\": \"testWS-0369\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:08:12.9084575Z\",\r\n \"modifiedOn\": \"2016-09-16T18:08:25.5431408Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9232d37783844552a063414fe2b8eece/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0370\",\r\n \"name\": \"testWS-0370\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:08:32.0200169Z\",\r\n \"modifiedOn\": \"2016-09-16T18:08:41.3183737Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/06de06b64b8748eb8109fdfe53b78c21/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0371\",\r\n \"name\": \"testWS-0371\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:08:47.8503275Z\",\r\n \"modifiedOn\": \"2016-09-16T18:09:00.430354Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/137b5683aa3d4570ad5510919a87fc3d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0372\",\r\n \"name\": \"testWS-0372\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:09:03.2998685Z\",\r\n \"modifiedOn\": \"2016-09-16T18:09:18.6010708Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ecf5ad36c07348b4a09bf7b8c906c82f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0373\",\r\n \"name\": \"testWS-0373\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:09:20.5333711Z\",\r\n \"modifiedOn\": \"2016-09-16T18:09:42.6650058Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/968bb0ce0a714e4f9f3daa836b2b7322/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0374\",\r\n \"name\": \"testWS-0374\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:09:47.2334029Z\",\r\n \"modifiedOn\": \"2016-09-16T18:09:59.6973231Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7969e8c0a0f44fb7a87aed05e8d624d9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0375\",\r\n \"name\": \"testWS-0375\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:10:02.7636194Z\",\r\n \"modifiedOn\": \"2016-09-16T18:10:12.9766051Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6349d3ebb6e64f20ac8e7f44e1b17a07/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0376\",\r\n \"name\": \"testWS-0376\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:10:17.1837649Z\",\r\n \"modifiedOn\": \"2016-09-16T18:10:27.2596096Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b567eb65a18479d86e2bb9de24c98a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0377\",\r\n \"name\": \"testWS-0377\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:10:33.0517188Z\",\r\n \"modifiedOn\": \"2016-09-16T18:10:48.5893486Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/aaf2c48e19df4d3fa7e3c4ea1978631d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0378\",\r\n \"name\": \"testWS-0378\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:10:55.490229Z\",\r\n \"modifiedOn\": \"2016-09-16T18:11:14.1546252Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2b4e7b5a6a11462994addb95fdf8a9e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0379\",\r\n \"name\": \"testWS-0379\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:11:15.9855904Z\",\r\n \"modifiedOn\": \"2016-09-16T18:11:34.9023553Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4239a448617f4dc3bf570caa8ad89c7f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0380\",\r\n \"name\": \"testWS-0380\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:11:41.3890298Z\",\r\n \"modifiedOn\": \"2016-09-16T18:11:52.3950732Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8c1dbf281d9141b0906d2eafdefc6ed0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0381\",\r\n \"name\": \"testWS-0381\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:11:56.0190575Z\",\r\n \"modifiedOn\": \"2016-09-16T18:12:11.4717666Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/245133afe3a343e295ad679e6e90eacd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0382\",\r\n \"name\": \"testWS-0382\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:12:16.0537253Z\",\r\n \"modifiedOn\": \"2016-09-16T18:12:25.7748239Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f07ea9b8f6214f7b9c8bfd8cc11d63ce/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0383\",\r\n \"name\": \"testWS-0383\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:12:33.6093725Z\",\r\n \"modifiedOn\": \"2016-09-16T18:12:43.5786089Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/49d59e0dee8447f3b792d7189af67d22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0384\",\r\n \"name\": \"testWS-0384\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:12:47.9786994Z\",\r\n \"modifiedOn\": \"2016-09-16T18:13:00.1328002Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b57bbbf783974a879863b8e567f06e8e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0385\",\r\n \"name\": \"testWS-0385\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:13:04.4095481Z\",\r\n \"modifiedOn\": \"2016-09-16T18:13:15.8610445Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/053992177029496ea9c41c5ef4d3c00e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0386\",\r\n \"name\": \"testWS-0386\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:13:21.9537262Z\",\r\n \"modifiedOn\": \"2016-09-16T18:13:31.9808477Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f510b64b41134e7084f8ada0699e325d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0387\",\r\n \"name\": \"testWS-0387\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:13:39.3562178Z\",\r\n \"modifiedOn\": \"2016-09-16T18:13:51.96271Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/edbe845c8e83405085dcddf6909f6564/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0388\",\r\n \"name\": \"testWS-0388\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:13:54.0148369Z\",\r\n \"modifiedOn\": \"2016-09-16T18:14:06.7647371Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9060515cb0ae4b0bb7a7a22b9f92913f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0389\",\r\n \"name\": \"testWS-0389\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:14:13.5310062Z\",\r\n \"modifiedOn\": \"2016-09-16T18:14:30.6662782Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/88cf139f31d2410e98fd1910e2ea058e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0390\",\r\n \"name\": \"testWS-0390\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:14:37.7782656Z\",\r\n \"modifiedOn\": \"2016-09-16T18:14:49.2712338Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1befb5cf6e0c4af1a40a4040912cab5b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0391\",\r\n \"name\": \"testWS-0391\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:14:54.2369421Z\",\r\n \"modifiedOn\": \"2016-09-16T18:15:02.6684266Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6443d556e5674336a6bde0e7f3ca597e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0392\",\r\n \"name\": \"testWS-0392\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:15:07.4531212Z\",\r\n \"modifiedOn\": \"2016-09-16T18:15:20.9707593Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe087281e5ad412fbaa5aab63031b37d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0393\",\r\n \"name\": \"testWS-0393\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:15:24.2865955Z\",\r\n \"modifiedOn\": \"2016-09-16T18:15:37.1237277Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3fd4b83c0f7b43228a3dfd54d7ca3c2e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0394\",\r\n \"name\": \"testWS-0394\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:15:42.2547016Z\",\r\n \"modifiedOn\": \"2016-09-16T18:15:55.8743062Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/14cf13e6fe314acab8ddc64cc53f3bc3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0395\",\r\n \"name\": \"testWS-0395\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:16:01.9570167Z\",\r\n \"modifiedOn\": \"2016-09-16T18:16:17.3771043Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/562522754c9b448080db1b75b18b97a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0396\",\r\n \"name\": \"testWS-0396\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:16:24.2831541Z\",\r\n \"modifiedOn\": \"2016-09-16T18:16:35.6058325Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/89c1ce55b02e4c939440e2151437e2d6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0397\",\r\n \"name\": \"testWS-0397\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:16:42.4134206Z\",\r\n \"modifiedOn\": \"2016-09-16T18:17:00.1267727Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/70dfa92031d94b0eb67a97550841f2cf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0398\",\r\n \"name\": \"testWS-0398\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:17:02.9323899Z\",\r\n \"modifiedOn\": \"2016-09-16T18:17:15.2976312Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0d62a24f96b842b8b1360d6019eacc6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0399\",\r\n \"name\": \"testWS-0399\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:17:19.0720761Z\",\r\n \"modifiedOn\": \"2016-09-16T18:17:41.0584093Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/467ca7fa76854286adc90d610f0a87d7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0400\",\r\n \"name\": \"testWS-0400\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:17:42.3150314Z\",\r\n \"modifiedOn\": \"2016-09-16T18:17:58.3806439Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/83e112c9b6764de8994627f0e24e5001/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0401\",\r\n \"name\": \"testWS-0401\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:18:03.1777946Z\",\r\n \"modifiedOn\": \"2016-09-16T18:18:18.2374229Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ae6449766a7c4ef3bdd0b389a7fbb1cb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0402\",\r\n \"name\": \"testWS-0402\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:18:20.6729108Z\",\r\n \"modifiedOn\": \"2016-09-16T18:18:31.4959466Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2d7e3fb4b9a42cdb2d56a46571b4bf5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0403\",\r\n \"name\": \"testWS-0403\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:18:37.9331249Z\",\r\n \"modifiedOn\": \"2016-09-16T18:18:48.552064Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4f866effa6fe408ca7c5891e2b8f2947/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0404\",\r\n \"name\": \"testWS-0404\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:18:54.9674255Z\",\r\n \"modifiedOn\": \"2016-09-16T18:19:07.0474248Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3334debd698a472aa332d018c5d498b1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0405\",\r\n \"name\": \"testWS-0405\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:19:11.3644524Z\",\r\n \"modifiedOn\": \"2016-09-16T18:19:24.0859331Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bf916ded8cda4b15a330631d6aa5cb9f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0406\",\r\n \"name\": \"testWS-0406\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:19:29.6923037Z\",\r\n \"modifiedOn\": \"2016-09-16T18:19:48.1953795Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/12025aa7a1a241b3ba94c6c14b907333/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0407\",\r\n \"name\": \"testWS-0407\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:19:53.0089815Z\",\r\n \"modifiedOn\": \"2016-09-16T18:20:11.3881738Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f477088851884abaad73c99816871800/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0408\",\r\n \"name\": \"testWS-0408\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:20:15.5825444Z\",\r\n \"modifiedOn\": \"2016-09-16T18:20:38.7705108Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/892ae3bb09154504aea0c2a4abdef963/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0409\",\r\n \"name\": \"testWS-0409\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:20:45.975789Z\",\r\n \"modifiedOn\": \"2016-09-16T18:20:57.2152702Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/617afa7b69d34ff7bb6bfcfb35eca532/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0410\",\r\n \"name\": \"testWS-0410\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:21:03.9882802Z\",\r\n \"modifiedOn\": \"2016-09-16T18:21:17.4095123Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fcb3d8edfad94a0092daf64b9f4be40a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0411\",\r\n \"name\": \"testWS-0411\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:21:21.1302941Z\",\r\n \"modifiedOn\": \"2016-09-16T18:21:34.1184909Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/31081fd7d3c147388c1625504dc595c0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0412\",\r\n \"name\": \"testWS-0412\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:21:39.3688327Z\",\r\n \"modifiedOn\": \"2016-09-16T18:21:51.3559338Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/215a0bd610cd4569a58261a3de350101/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0413\",\r\n \"name\": \"testWS-0413\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:21:57.9960794Z\",\r\n \"modifiedOn\": \"2016-09-16T18:22:09.8487352Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c76f5b91edca4c42b6de794d873e7601/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0414\",\r\n \"name\": \"testWS-0414\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:22:13.2368119Z\",\r\n \"modifiedOn\": \"2016-09-16T18:22:26.0916883Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c3cb5c1a440f46dea3116e318a163e47/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0415\",\r\n \"name\": \"testWS-0415\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:22:25.4229079Z\",\r\n \"modifiedOn\": \"2016-09-16T18:22:50.4195703Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/79a86f7016ef4f6fb95bee1b0900f13e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0416\",\r\n \"name\": \"testWS-0416\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:22:54.9292192Z\",\r\n \"modifiedOn\": \"2016-09-16T18:23:06.1906339Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0b9a19a3f37e489a974247b0904a80ec/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0417\",\r\n \"name\": \"testWS-0417\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:23:10.3170729Z\",\r\n \"modifiedOn\": \"2016-09-16T18:23:26.593026Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/57d54501e6674879b2730e868d5db4f0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0418\",\r\n \"name\": \"testWS-0418\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:23:30.5877144Z\",\r\n \"modifiedOn\": \"2016-09-16T18:23:42.7844488Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0597e4a602304b58ab906e823e8fb162/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0419\",\r\n \"name\": \"testWS-0419\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:23:50.4707806Z\",\r\n \"modifiedOn\": \"2016-09-16T18:24:00.978618Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e3ec84520bc44b0d9b748a947f62133d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0420\",\r\n \"name\": \"testWS-0420\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:24:07.8980171Z\",\r\n \"modifiedOn\": \"2016-09-16T18:24:15.8023126Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a85b7cf9130941e9935650d14e925b8d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0421\",\r\n \"name\": \"testWS-0421\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:24:22.713201Z\",\r\n \"modifiedOn\": \"2016-09-16T18:24:36.9553585Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/287f864836c74c29aad55e7fe37e412a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0422\",\r\n \"name\": \"testWS-0422\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:24:37.2074442Z\",\r\n \"modifiedOn\": \"2016-09-16T18:24:49.0911911Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8fadd22cbb7443d91d09ac8f3ed721c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0423\",\r\n \"name\": \"testWS-0423\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:24:52.2412292Z\",\r\n \"modifiedOn\": \"2016-09-16T18:25:01.3451299Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ada6cfbff4ff4c20930bbdecc416b509/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0424\",\r\n \"name\": \"testWS-0424\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:25:07.3134543Z\",\r\n \"modifiedOn\": \"2016-09-16T18:25:20.6315235Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fdc5449c3bd34214a6968aa90302431c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0425\",\r\n \"name\": \"testWS-0425\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:25:23.1105261Z\",\r\n \"modifiedOn\": \"2016-09-16T18:25:32.9224479Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f9c1d4eeca184527a06fa2f3f786e608/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0426\",\r\n \"name\": \"testWS-0426\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:25:36.201992Z\",\r\n \"modifiedOn\": \"2016-09-16T18:25:45.0352504Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e5b94bfb51fe4d7fa620e93cb15ff37d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0427\",\r\n \"name\": \"testWS-0427\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:25:48.7357983Z\",\r\n \"modifiedOn\": \"2016-09-16T18:26:04.4495764Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/be7f2992ccf348d2af4e91410e51a783/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0428\",\r\n \"name\": \"testWS-0428\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:26:12.156176Z\",\r\n \"modifiedOn\": \"2016-09-16T18:26:24.4269076Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d7cae7efce334beeae35ff0214223526/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0429\",\r\n \"name\": \"testWS-0429\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:26:29.3410144Z\",\r\n \"modifiedOn\": \"2016-09-16T18:26:39.7547702Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6c044fae10f0408f8c78f52a57844853/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0430\",\r\n \"name\": \"testWS-0430\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:26:40.5839748Z\",\r\n \"modifiedOn\": \"2016-09-16T18:26:55.7118692Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d717be1865d4c4cbddcd3a2072cefde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0431\",\r\n \"name\": \"testWS-0431\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:01.4700993Z\",\r\n \"modifiedOn\": \"2016-09-16T18:27:09.3789352Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/553a06218f4e42a5a9b9193f179ebd9a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0432\",\r\n \"name\": \"testWS-0432\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:14.8619072Z\",\r\n \"modifiedOn\": \"2016-09-16T18:27:22.8227357Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f5ac3b5351e549368dfc02806dfbbf0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0433\",\r\n \"name\": \"testWS-0433\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:23.9445709Z\",\r\n \"modifiedOn\": \"2016-09-16T18:27:35.5930581Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a96897b6f89942978e830b2c98664d51/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0434\",\r\n \"name\": \"testWS-0434\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:36.7118479Z\",\r\n \"modifiedOn\": \"2016-09-16T18:27:48.4383214Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f5a14916541f43a1bbb99ac5f29981fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0435\",\r\n \"name\": \"testWS-0435\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:51.574122Z\",\r\n \"modifiedOn\": \"2016-09-16T18:28:08.7223971Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd50b2f92a964e07965840d33f84588f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0436\",\r\n \"name\": \"testWS-0436\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:28:15.5199031Z\",\r\n \"modifiedOn\": \"2016-09-16T18:28:22.0252322Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d342f2086f1f46bab1d1157789bd8aff/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0437\",\r\n \"name\": \"testWS-0437\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:28:26.2264119Z\",\r\n \"modifiedOn\": \"2016-09-16T18:28:41.1178826Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/709e48afb00d4309ac2b5dbbc1d90d1b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0438\",\r\n \"name\": \"testWS-0438\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:28:44.0185947Z\",\r\n \"modifiedOn\": \"2016-09-16T18:28:58.0973225Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f65028cd9a8740f1987dfe7c3b2dfdb1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0439\",\r\n \"name\": \"testWS-0439\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:29:02.8187803Z\",\r\n \"modifiedOn\": \"2016-09-16T18:29:16.6077526Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2a356217e57f49dda908fc44757e7610/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0440\",\r\n \"name\": \"testWS-0440\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:29:17.6548913Z\",\r\n \"modifiedOn\": \"2016-09-16T18:29:31.4602783Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6068f8eb931247019ad6277b1d837cb4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0441\",\r\n \"name\": \"testWS-0441\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:29:35.8567673Z\",\r\n \"modifiedOn\": \"2016-09-16T18:29:50.5861409Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3549845e7070427fa8fa9243d9f69a6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0442\",\r\n \"name\": \"testWS-0442\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:29:56.181992Z\",\r\n \"modifiedOn\": \"2016-09-16T18:30:14.7852667Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e35e7fe75a8c4fd68ef13c55358fbbbb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0443\",\r\n \"name\": \"testWS-0443\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:30:18.5919031Z\",\r\n \"modifiedOn\": \"2016-09-16T18:30:28.7151977Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/44b71eeca1f14be388d34e6018ec23b5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0444\",\r\n \"name\": \"testWS-0444\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:30:36.2149795Z\",\r\n \"modifiedOn\": \"2016-09-16T18:30:51.6020683Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/86b997ebad0244be966e8ad9e0c05696/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0445\",\r\n \"name\": \"testWS-0445\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:30:58.9390389Z\",\r\n \"modifiedOn\": \"2016-09-16T18:31:10.1214416Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8135d3952eda44dab134dcf78d5ae9fb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0446\",\r\n \"name\": \"testWS-0446\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:31:16.2895291Z\",\r\n \"modifiedOn\": \"2016-09-16T18:31:24.8533398Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/30f67c71d5bc41caa13d97f0cd5a8302/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0447\",\r\n \"name\": \"testWS-0447\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:31:26.707206Z\",\r\n \"modifiedOn\": \"2016-09-16T18:31:42.1999579Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a9e5b979bdba4973bdc7240cedecf7ae/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0448\",\r\n \"name\": \"testWS-0448\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:31:44.5525907Z\",\r\n \"modifiedOn\": \"2016-09-16T18:31:57.9694684Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/da4d9c77d5fa4c6f8e776b576c6b94eb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0449\",\r\n \"name\": \"testWS-0449\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:32:05.7545185Z\",\r\n \"modifiedOn\": \"2016-09-16T18:32:22.1774218Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/55a4cf27138c45e2a65a3ea1c7f0aae2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0450\",\r\n \"name\": \"testWS-0450\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:32:26.5617626Z\",\r\n \"modifiedOn\": \"2016-09-16T18:32:44.3808007Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2ecf10a9a09c4fc094cc5367db5dd6db/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0451\",\r\n \"name\": \"testWS-0451\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:32:48.8798791Z\",\r\n \"modifiedOn\": \"2016-09-16T18:33:02.143758Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05802887390c4621bf3d68ca62bd8814/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0452\",\r\n \"name\": \"testWS-0452\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:33:06.8423885Z\",\r\n \"modifiedOn\": \"2016-09-16T18:33:22.3199221Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eb0f4557685a4330b36524922df00416/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0453\",\r\n \"name\": \"testWS-0453\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:33:30.7504749Z\",\r\n \"modifiedOn\": \"2016-09-16T18:33:40.2198448Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/46e4697615f2420e9851a981bbaa53f4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0454\",\r\n \"name\": \"testWS-0454\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:33:47.3535477Z\",\r\n \"modifiedOn\": \"2016-09-16T18:34:02.7075123Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eacbda5f5a9b45f4988cf77248a58500/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0455\",\r\n \"name\": \"testWS-0455\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:34:09.228195Z\",\r\n \"modifiedOn\": \"2016-09-16T18:34:21.801546Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e9c91953034943d5a98145422d4ec2bc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0456\",\r\n \"name\": \"testWS-0456\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:34:28.4673343Z\",\r\n \"modifiedOn\": \"2016-09-16T18:34:39.6741142Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ecee7d01de3042e3ab54661919fc0e5f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0457\",\r\n \"name\": \"testWS-0457\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:34:42.2758335Z\",\r\n \"modifiedOn\": \"2016-09-16T18:34:55.7565354Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d483d634900342b38e4f83eb6d4155f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0458\",\r\n \"name\": \"testWS-0458\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:35:03.2937401Z\",\r\n \"modifiedOn\": \"2016-09-16T18:35:13.3197505Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/272fced9678d4ac0b3a59e8d2b223980/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0459\",\r\n \"name\": \"testWS-0459\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:35:20.7362093Z\",\r\n \"modifiedOn\": \"2016-09-16T18:35:31.6481522Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bb2e662c04b3453f97643354464dcbbf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0460\",\r\n \"name\": \"testWS-0460\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:35:38.761761Z\",\r\n \"modifiedOn\": \"2016-09-16T18:35:56.7299856Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3843f85913c147a0a53b7bbe9d21fa83/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0461\",\r\n \"name\": \"testWS-0461\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:36:01.313768Z\",\r\n \"modifiedOn\": \"2016-09-16T18:36:17.3768194Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec6e86e924574983a52315cb5153486f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0462\",\r\n \"name\": \"testWS-0462\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:36:18.4358255Z\",\r\n \"modifiedOn\": \"2016-09-16T18:36:29.0964367Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ea8cd4da8aed46e6be1e5436affc8430/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0463\",\r\n \"name\": \"testWS-0463\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:36:34.7560729Z\",\r\n \"modifiedOn\": \"2016-09-16T18:36:43.8299789Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9062d121148f4a8a8b54cd366d4a1f42/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0464\",\r\n \"name\": \"testWS-0464\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:36:46.9194141Z\",\r\n \"modifiedOn\": \"2016-09-16T18:36:57.070266Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/857acdacebf84c528e54bbb9d80f026d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0465\",\r\n \"name\": \"testWS-0465\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:37:04.5819155Z\",\r\n \"modifiedOn\": \"2016-09-16T18:37:14.6967325Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/19b6cc171ce6489eb00e30461b4cdfcc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0466\",\r\n \"name\": \"testWS-0466\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:37:20.588034Z\",\r\n \"modifiedOn\": \"2016-09-16T18:37:33.5045653Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5c30543990d344ca978fbb6a35bb59bf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0467\",\r\n \"name\": \"testWS-0467\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:37:40.0759119Z\",\r\n \"modifiedOn\": \"2016-09-16T18:37:52.0445879Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bd76a74fc30748ca869a292b5924451e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0468\",\r\n \"name\": \"testWS-0468\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:37:55.7628441Z\",\r\n \"modifiedOn\": \"2016-09-16T18:38:14.344405Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2773e491c7494fc3a5b5763ce9704fba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0469\",\r\n \"name\": \"testWS-0469\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:38:16.9426805Z\",\r\n \"modifiedOn\": \"2016-09-16T18:38:39.2888882Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/374f4db93e0348c8bec19f3195491e30/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0470\",\r\n \"name\": \"testWS-0470\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:38:40.2345189Z\",\r\n \"modifiedOn\": \"2016-09-16T18:38:54.5915664Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2e010aa33d94b01a532406379fee1d8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0471\",\r\n \"name\": \"testWS-0471\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:39:01.486642Z\",\r\n \"modifiedOn\": \"2016-09-16T18:39:12.1334752Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29c5f84f863c481bbdc99626c0b96147/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0472\",\r\n \"name\": \"testWS-0472\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:39:17.9725115Z\",\r\n \"modifiedOn\": \"2016-09-16T18:39:32.5838153Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2cd47704a5534422bd36b024fd029c58/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0473\",\r\n \"name\": \"testWS-0473\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:39:32.5082768Z\",\r\n \"modifiedOn\": \"2016-09-16T18:39:51.5877401Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b034b1cd83694463800f34839939a088/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0474\",\r\n \"name\": \"testWS-0474\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:39:57.9273648Z\",\r\n \"modifiedOn\": \"2016-09-16T18:40:07.9508397Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d886a5c2dac94b20abc65bf92913ca93/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0475\",\r\n \"name\": \"testWS-0475\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:40:16.0335375Z\",\r\n \"modifiedOn\": \"2016-09-16T18:40:29.209134Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2a892a979a374bb880779a035258971a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0476\",\r\n \"name\": \"testWS-0476\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:40:32.9241965Z\",\r\n \"modifiedOn\": \"2016-09-16T18:40:44.6591306Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f68a0446ce5d48d081e72d0dbb059a06/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0477\",\r\n \"name\": \"testWS-0477\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:40:48.1371893Z\",\r\n \"modifiedOn\": \"2016-09-16T18:41:02.6116957Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dfc0b2e028c94f7dba331120668a79c8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0478\",\r\n \"name\": \"testWS-0478\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:41:08.7455851Z\",\r\n \"modifiedOn\": \"2016-09-16T18:41:21.3367613Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/82b9e0079d964cba84e62132df4ca705/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0479\",\r\n \"name\": \"testWS-0479\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:41:26.1456457Z\",\r\n \"modifiedOn\": \"2016-09-16T18:41:36.8966833Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc7fc7ae01a2416e8610db0461985117/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0480\",\r\n \"name\": \"testWS-0480\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:41:44.5294479Z\",\r\n \"modifiedOn\": \"2016-09-16T18:41:53.2813913Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/91b9e3eb94ba462590e6c7d9933cb158/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0481\",\r\n \"name\": \"testWS-0481\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:42:01.3493934Z\",\r\n \"modifiedOn\": \"2016-09-16T18:42:15.6388925Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1ac9b28211c9449dab0375052138c7ad/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0482\",\r\n \"name\": \"testWS-0482\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:42:23.2017941Z\",\r\n \"modifiedOn\": \"2016-09-16T18:42:31.8148379Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e29c255eaf6a4095a2e0e2d99c6d051a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0483\",\r\n \"name\": \"testWS-0483\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:42:34.6926217Z\",\r\n \"modifiedOn\": \"2016-09-16T18:42:44.3370778Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42ce4dcb1b0d4dada76171fc21ffcae0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0484\",\r\n \"name\": \"testWS-0484\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:42:45.4725237Z\",\r\n \"modifiedOn\": \"2016-09-16T18:43:02.1100643Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7ec5c9518df140c5bae1b9522701091f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0485\",\r\n \"name\": \"testWS-0485\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:43:03.449538Z\",\r\n \"modifiedOn\": \"2016-09-16T18:43:19.3841675Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7c5a3d1a2f004cac82196a069cb6b2ef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0486\",\r\n \"name\": \"testWS-0486\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:43:23.9252397Z\",\r\n \"modifiedOn\": \"2016-09-16T18:43:34.3453787Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5181ff3597d34cbd8a25e92ff3115cc9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0487\",\r\n \"name\": \"testWS-0487\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:43:37.3241659Z\",\r\n \"modifiedOn\": \"2016-09-16T18:43:47.4838021Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8943dd9eb55a4ff7af6063b806fdc579/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0488\",\r\n \"name\": \"testWS-0488\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:43:55.144462Z\",\r\n \"modifiedOn\": \"2016-09-16T18:44:07.060454Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/33f807ca6a12483d85098a4b96f58870/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0489\",\r\n \"name\": \"testWS-0489\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:44:12.1425082Z\",\r\n \"modifiedOn\": \"2016-09-16T18:44:29.2587324Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05115b9782b94d7c8f3841b773484a77/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0490\",\r\n \"name\": \"testWS-0490\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:44:30.7612474Z\",\r\n \"modifiedOn\": \"2016-09-16T18:44:47.0312612Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d5adeded748f4b3f84ea570d9e1021ba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0491\",\r\n \"name\": \"testWS-0491\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:44:51.4401081Z\",\r\n \"modifiedOn\": \"2016-09-16T18:45:02.132006Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3aee0e0a501741d686c80c6410c63d11/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0492\",\r\n \"name\": \"testWS-0492\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:45:11.2091553Z\",\r\n \"modifiedOn\": \"2016-09-16T18:45:28.0201538Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a582f0a351594da0a169f2ac277756c3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0493\",\r\n \"name\": \"testWS-0493\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:45:30.043826Z\",\r\n \"modifiedOn\": \"2016-09-16T18:45:44.0008728Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a11337f2b9a7461d8abbe1a899492074/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0494\",\r\n \"name\": \"testWS-0494\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:45:49.542032Z\",\r\n \"modifiedOn\": \"2016-09-16T18:46:03.8474538Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/20ab6fc4bfd34208a96d11a6ebf07de7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0495\",\r\n \"name\": \"testWS-0495\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:46:06.5009637Z\",\r\n \"modifiedOn\": \"2016-09-16T18:46:18.237812Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a29165c30a546e4b6f80ecff6bac3f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0496\",\r\n \"name\": \"testWS-0496\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:46:23.3119763Z\",\r\n \"modifiedOn\": \"2016-09-16T18:46:32.1328804Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/85d77a94faf8477796445a82052d81c4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0497\",\r\n \"name\": \"testWS-0497\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:46:41.5375161Z\",\r\n \"modifiedOn\": \"2016-09-16T18:46:52.563932Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cffb7441e2344bfc93da5e06eb5a4e0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0498\",\r\n \"name\": \"testWS-0498\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:46:55.6525216Z\",\r\n \"modifiedOn\": \"2016-09-16T18:47:08.4548255Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7d863f5309274db5b27d2347d3324f1b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0499\",\r\n \"name\": \"testWS-0499\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:47:16.0313815Z\",\r\n \"modifiedOn\": \"2016-09-16T18:47:29.0579908Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a8585c349cc34447910e92dd0ced8a0e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0500\",\r\n \"name\": \"testWS-0500\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:47:31.4317225Z\",\r\n \"modifiedOn\": \"2016-09-16T18:47:42.2089936Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a1c81168a2c4422399875d685240674e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0501\",\r\n \"name\": \"testWS-0501\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:47:46.9628583Z\",\r\n \"modifiedOn\": \"2016-09-16T18:47:59.3623135Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/597f158dfc464eb198adb86aa43c5dde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0502\",\r\n \"name\": \"testWS-0502\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:48:02.0832737Z\",\r\n \"modifiedOn\": \"2016-09-16T18:48:19.6321833Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/16d4ee07dd924a84a59e4b018c5e1243/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0503\",\r\n \"name\": \"testWS-0503\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:48:24.3255674Z\",\r\n \"modifiedOn\": \"2016-09-16T18:48:34.8207976Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ca094215bbb4236af005f63617b9afb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0504\",\r\n \"name\": \"testWS-0504\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:48:38.6495672Z\",\r\n \"modifiedOn\": \"2016-09-16T18:48:54.0128199Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df0c6c8fecec4a758d2b3e51d1e4e64b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0505\",\r\n \"name\": \"testWS-0505\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:48:56.1047242Z\",\r\n \"modifiedOn\": \"2016-09-16T18:49:15.4465769Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/055218f9c0f344b688d451d548857857/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0506\",\r\n \"name\": \"testWS-0506\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:49:18.5280314Z\",\r\n \"modifiedOn\": \"2016-09-16T18:49:31.2206979Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2d6d62676d5439aac171df29b983bb5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0507\",\r\n \"name\": \"testWS-0507\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:49:35.8930561Z\",\r\n \"modifiedOn\": \"2016-09-16T18:49:53.843259Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9531eb50cfb643c6a72aadd83a92a070/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0508\",\r\n \"name\": \"testWS-0508\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:49:58.1079643Z\",\r\n \"modifiedOn\": \"2016-09-16T18:50:14.4757122Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3a2bfa095e544398ae69a0dc17fcf628/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0509\",\r\n \"name\": \"testWS-0509\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:50:19.4183964Z\",\r\n \"modifiedOn\": \"2016-09-16T18:50:27.7402022Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4931a70e74ea4113972fdc03eb710f0b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0510\",\r\n \"name\": \"testWS-0510\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:50:31.7136007Z\",\r\n \"modifiedOn\": \"2016-09-16T18:50:50.5135907Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/186b35da38f24a9f977e16821ee12fcd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0511\",\r\n \"name\": \"testWS-0511\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:50:55.27704Z\",\r\n \"modifiedOn\": \"2016-09-16T18:51:10.1818621Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ba70e951ca064a7cbffe5a6c08ce0922/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0512\",\r\n \"name\": \"testWS-0512\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:51:15.8160445Z\",\r\n \"modifiedOn\": \"2016-09-16T18:51:26.1959964Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cbf26ea18a2f428c883f243ed68c60a8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0513\",\r\n \"name\": \"testWS-0513\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:51:34.4119819Z\",\r\n \"modifiedOn\": \"2016-09-16T18:51:44.6961822Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f9d6f20f28c44eefa0ecbaeef7ef8eb9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0514\",\r\n \"name\": \"testWS-0514\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:52:03.1773633Z\",\r\n \"modifiedOn\": \"2016-09-16T18:52:14.3864506Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77af5f49e94e423c8dc3b5bd50009bd0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0515\",\r\n \"name\": \"testWS-0515\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:52:21.4444543Z\",\r\n \"modifiedOn\": \"2016-09-16T18:52:32.7533285Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f5b34550864a4d6f859651de309ac0b0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0516\",\r\n \"name\": \"testWS-0516\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:52:37.9436109Z\",\r\n \"modifiedOn\": \"2016-09-16T18:52:47.3142365Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/868bb53cd47b4939a2769b96d980a609/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0517\",\r\n \"name\": \"testWS-0517\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:52:52.5237917Z\",\r\n \"modifiedOn\": \"2016-09-16T18:53:03.0515019Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/802ceb9219c24a3b8cb8ebb7a1986f40/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0518\",\r\n \"name\": \"testWS-0518\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:53:12.1779225Z\",\r\n \"modifiedOn\": \"2016-09-16T18:53:24.7477986Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5f7ccde72b4f433799be33b6f7f054c8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0519\",\r\n \"name\": \"testWS-0519\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:53:28.3267466Z\",\r\n \"modifiedOn\": \"2016-09-16T18:53:38.2081706Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2ffd11facbf449ab7421826e509f217/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0520\",\r\n \"name\": \"testWS-0520\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:53:38.6234628Z\",\r\n \"modifiedOn\": \"2016-09-16T18:54:00.3022841Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6df71cba85cb41eb9d980b88277ca083/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0521\",\r\n \"name\": \"testWS-0521\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:54:03.9818615Z\",\r\n \"modifiedOn\": \"2016-09-16T18:54:18.8298269Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/66884fb2542d4da1811e2ca63362974b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0522\",\r\n \"name\": \"testWS-0522\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:54:28.0708169Z\",\r\n \"modifiedOn\": \"2016-09-16T18:54:43.9161Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/670c090184f34365a49435a048f46f0a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0523\",\r\n \"name\": \"testWS-0523\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:54:46.8825457Z\",\r\n \"modifiedOn\": \"2016-09-16T18:55:03.2932646Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ace19a0c34c0490889ca8bfa1e6f2c4f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0524\",\r\n \"name\": \"testWS-0524\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:55:04.9680719Z\",\r\n \"modifiedOn\": \"2016-09-16T18:55:16.4907364Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0d8c93e7eaa49599ab5e029a309f0a4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0525\",\r\n \"name\": \"testWS-0525\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:55:20.6911297Z\",\r\n \"modifiedOn\": \"2016-09-16T18:55:33.640174Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/862972a9fe2e4f3f8ba5923e971ab158/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0526\",\r\n \"name\": \"testWS-0526\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:55:38.1129807Z\",\r\n \"modifiedOn\": \"2016-09-16T18:55:56.3483568Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f21ede3e374d446ab839ea0a6bc4e3c1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0527\",\r\n \"name\": \"testWS-0527\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:55:59.4279061Z\",\r\n \"modifiedOn\": \"2016-09-16T18:56:11.4303773Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4efe4e3ca397488394b7a71006b7c229/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0528\",\r\n \"name\": \"testWS-0528\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:56:18.9153009Z\",\r\n \"modifiedOn\": \"2016-09-16T18:56:35.8578466Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0132eac7d754f6bb83fc34d61e0ad2d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0529\",\r\n \"name\": \"testWS-0529\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:56:42.4525377Z\",\r\n \"modifiedOn\": \"2016-09-16T18:56:52.8053847Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0a53f8f782a04b479a138051c3275f28/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0530\",\r\n \"name\": \"testWS-0530\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:56:59.937493Z\",\r\n \"modifiedOn\": \"2016-09-16T18:57:12.4435565Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9a9325fbf0bd4c5a87e241963a902915/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0531\",\r\n \"name\": \"testWS-0531\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:57:18.1778595Z\",\r\n \"modifiedOn\": \"2016-09-16T18:57:27.4186087Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1ffad15f4ee4e648fc76fa29280037c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0532\",\r\n \"name\": \"testWS-0532\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:57:35.5316204Z\",\r\n \"modifiedOn\": \"2016-09-16T18:57:49.6961082Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/61f67f3735134988a8566e4f4f86299e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0533\",\r\n \"name\": \"testWS-0533\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:57:51.8505928Z\",\r\n \"modifiedOn\": \"2016-09-16T18:58:09.6678213Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8cd30846d2e445d184a7b26d39fdc96d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0534\",\r\n \"name\": \"testWS-0534\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:58:11.9830544Z\",\r\n \"modifiedOn\": \"2016-09-16T18:58:26.0666652Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9cd7ac5bc52e468d9d55651eddc2409f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0535\",\r\n \"name\": \"testWS-0535\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:58:32.0416535Z\",\r\n \"modifiedOn\": \"2016-09-16T18:58:42.269102Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f332d7429c1b46b7a1199a6973d619cf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0536\",\r\n \"name\": \"testWS-0536\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:58:46.0666016Z\",\r\n \"modifiedOn\": \"2016-09-16T18:58:57.1079202Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/89cac2ddcab64d6891845bd0efebf571/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0537\",\r\n \"name\": \"testWS-0537\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:59:00.0746579Z\",\r\n \"modifiedOn\": \"2016-09-16T18:59:10.4362037Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1717023273ee4835a55b3f6d80fcd6e1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0538\",\r\n \"name\": \"testWS-0538\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:59:18.2948825Z\",\r\n \"modifiedOn\": \"2016-09-16T18:59:30.1376162Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cdbfc7d5e72a47c08b50ac406eaabd6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0539\",\r\n \"name\": \"testWS-0539\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:59:37.504063Z\",\r\n \"modifiedOn\": \"2016-09-16T18:59:51.6694291Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b1158d02e3da423caaa06944dcf2045e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0540\",\r\n \"name\": \"testWS-0540\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:59:56.5241125Z\",\r\n \"modifiedOn\": \"2016-09-16T19:00:06.9306748Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c154b2f64734be59ddf0479e3aadab5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0541\",\r\n \"name\": \"testWS-0541\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:00:10.7617182Z\",\r\n \"modifiedOn\": \"2016-09-16T19:00:23.8543088Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fb8c644219894bfa9299895b60c3321a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0542\",\r\n \"name\": \"testWS-0542\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:00:30.2085101Z\",\r\n \"modifiedOn\": \"2016-09-16T19:00:41.1394837Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5893b9128a134d9789861ac7bd2e99f1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0543\",\r\n \"name\": \"testWS-0543\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:00:48.9945615Z\",\r\n \"modifiedOn\": \"2016-09-16T19:00:58.1750351Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df1c05edc3d1450caaf3a62f3ceb5a92/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0544\",\r\n \"name\": \"testWS-0544\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:01:06.0649036Z\",\r\n \"modifiedOn\": \"2016-09-16T19:01:15.1411855Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f322c30d074b4d13b88b0669d9d30242/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0545\",\r\n \"name\": \"testWS-0545\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:01:19.8074325Z\",\r\n \"modifiedOn\": \"2016-09-16T19:01:36.1274233Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df9514de406c467581593ff06b18f114/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0546\",\r\n \"name\": \"testWS-0546\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:01:40.5659654Z\",\r\n \"modifiedOn\": \"2016-09-16T19:01:55.2075666Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/527670a1561c46658a6ae8390b1b4e74/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0547\",\r\n \"name\": \"testWS-0547\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:01:58.5152613Z\",\r\n \"modifiedOn\": \"2016-09-16T19:02:12.6578952Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bd6b47c7cd514312af2a6ac857e6b5f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0548\",\r\n \"name\": \"testWS-0548\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:02:19.4527832Z\",\r\n \"modifiedOn\": \"2016-09-16T19:02:33.3214337Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c88d9cb54644d9a9efab51c0f5c32ed/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0549\",\r\n \"name\": \"testWS-0549\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:02:41.3441228Z\",\r\n \"modifiedOn\": \"2016-09-16T19:02:53.9413458Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/56881ab1d7774438b6a357a8f8d00840/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0550\",\r\n \"name\": \"testWS-0550\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:02:59.6494127Z\",\r\n \"modifiedOn\": \"2016-09-16T19:03:18.0511158Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5886e725538847db81474238168535cf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0551\",\r\n \"name\": \"testWS-0551\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:03:21.3361154Z\",\r\n \"modifiedOn\": \"2016-09-16T19:03:31.5009499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/92d5d7c308bc43b999fd508a7b1d499d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0552\",\r\n \"name\": \"testWS-0552\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:03:38.5001935Z\",\r\n \"modifiedOn\": \"2016-09-16T19:03:55.8780689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a9c1fd2158b34b65834e7f8565b72037/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0553\",\r\n \"name\": \"testWS-0553\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:03:59.0646727Z\",\r\n \"modifiedOn\": \"2016-09-16T19:04:13.655223Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/db29a19c311d435dabaa1429b5608314/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0554\",\r\n \"name\": \"testWS-0554\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:04:19.5149044Z\",\r\n \"modifiedOn\": \"2016-09-16T19:04:31.2740627Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/358e2126b0a04bcc918330bee73e8c60/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0555\",\r\n \"name\": \"testWS-0555\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:04:37.1377941Z\",\r\n \"modifiedOn\": \"2016-09-16T19:04:52.0293755Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d5a76566210548a88ac5852f0791e504/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0556\",\r\n \"name\": \"testWS-0556\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:04:59.5632028Z\",\r\n \"modifiedOn\": \"2016-09-16T19:05:11.4875719Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a1cea76770b6433690a1357aac798a5e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0557\",\r\n \"name\": \"testWS-0557\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:05:17.3769245Z\",\r\n \"modifiedOn\": \"2016-09-16T19:05:27.1678745Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bbfbb2bb84724ed19eeb31b3111db0e5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0558\",\r\n \"name\": \"testWS-0558\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:05:31.1009768Z\",\r\n \"modifiedOn\": \"2016-09-16T19:05:46.9853455Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/184257aaebba4465bb98c6e5eaff62a6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0559\",\r\n \"name\": \"testWS-0559\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:05:53.5628616Z\",\r\n \"modifiedOn\": \"2016-09-16T19:06:09.2652156Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1d8db74c96844dceb8a9da723f01b478/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0560\",\r\n \"name\": \"testWS-0560\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:06:13.4459247Z\",\r\n \"modifiedOn\": \"2016-09-16T19:06:25.4462282Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b227c24bef3240d2ae2dddea9fd73217/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0561\",\r\n \"name\": \"testWS-0561\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:06:34.6687561Z\",\r\n \"modifiedOn\": \"2016-09-16T19:06:42.6497549Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e740ef2cf5d040378a23ccfd8b5f5f88/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0562\",\r\n \"name\": \"testWS-0562\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:06:43.2087528Z\",\r\n \"modifiedOn\": \"2016-09-16T19:06:57.3889606Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c03cbe17711241d694dfcd99c5f5e523/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0563\",\r\n \"name\": \"testWS-0563\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:07:03.3295427Z\",\r\n \"modifiedOn\": \"2016-09-16T19:07:20.1544525Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc1d2860222f4ab0b02034625284c315/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0564\",\r\n \"name\": \"testWS-0564\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:07:27.0957457Z\",\r\n \"modifiedOn\": \"2016-09-16T19:07:37.0435148Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ebb8a1581b68400fbc12012b7926c1fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0565\",\r\n \"name\": \"testWS-0565\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:07:40.9319197Z\",\r\n \"modifiedOn\": \"2016-09-16T19:07:57.2777813Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/893941aa3fa5460796b05fcea58a6d0b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0566\",\r\n \"name\": \"testWS-0566\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:08:02.0313386Z\",\r\n \"modifiedOn\": \"2016-09-16T19:08:14.6604957Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/230869b453794855b8ace78c05e850fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0567\",\r\n \"name\": \"testWS-0567\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:08:17.9904407Z\",\r\n \"modifiedOn\": \"2016-09-16T19:08:32.1246261Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/58520132d6934dee88ad17755a2a2547/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0568\",\r\n \"name\": \"testWS-0568\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:08:36.410882Z\",\r\n \"modifiedOn\": \"2016-09-16T19:08:48.5100342Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ef824cd51dcc47ab8130c1df0162bdf6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0569\",\r\n \"name\": \"testWS-0569\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:08:54.0413493Z\",\r\n \"modifiedOn\": \"2016-09-16T19:09:03.922398Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/94494fcddb8c4a688bd2f226c0782a02/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0570\",\r\n \"name\": \"testWS-0570\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:09:11.443616Z\",\r\n \"modifiedOn\": \"2016-09-16T19:09:22.0440551Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/abf327ba659d45978022335aba1de9c2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0571\",\r\n \"name\": \"testWS-0571\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:09:30.3510519Z\",\r\n \"modifiedOn\": \"2016-09-16T19:09:43.1098776Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6970a296cbe7434b9f0d5682c31c6821/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0572\",\r\n \"name\": \"testWS-0572\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:09:46.7933493Z\",\r\n \"modifiedOn\": \"2016-09-16T19:10:00.1114832Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/76201b8dc224466797b5506b260363f1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0573\",\r\n \"name\": \"testWS-0573\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:10:02.1664654Z\",\r\n \"modifiedOn\": \"2016-09-16T19:10:21.380976Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/25d3f49a0c784c808481e80c1ceb333d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0574\",\r\n \"name\": \"testWS-0574\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:10:24.7602917Z\",\r\n \"modifiedOn\": \"2016-09-16T19:10:38.3587237Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1b9a6b0a6d564d5f81afb5c68dd69d30/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0575\",\r\n \"name\": \"testWS-0575\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:10:42.4734863Z\",\r\n \"modifiedOn\": \"2016-09-16T19:11:00.8288637Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a4272537e095489698cc833a3c75dc96/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0576\",\r\n \"name\": \"testWS-0576\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:11:05.4586537Z\",\r\n \"modifiedOn\": \"2016-09-16T19:11:16.4491663Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c84ad9465601480db7cb145c55aed623/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0577\",\r\n \"name\": \"testWS-0577\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:11:17.3260391Z\",\r\n \"modifiedOn\": \"2016-09-16T19:11:34.1964195Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/350fef5638094622948be4d14114ed37/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0578\",\r\n \"name\": \"testWS-0578\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:11:35.028193Z\",\r\n \"modifiedOn\": \"2016-09-16T19:11:47.9168562Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f1bc2e2d965e4ec4af085b6f2cf9f440/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0579\",\r\n \"name\": \"testWS-0579\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:11:56.1569727Z\",\r\n \"modifiedOn\": \"2016-09-16T19:12:04.4722421Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d112337658524c1fb24bf9e975e3720f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0580\",\r\n \"name\": \"testWS-0580\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:12:13.2696757Z\",\r\n \"modifiedOn\": \"2016-09-16T19:12:22.6318726Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/20b2334f1ab5462dbc785b0bf9e32da4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0581\",\r\n \"name\": \"testWS-0581\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:12:26.6042367Z\",\r\n \"modifiedOn\": \"2016-09-16T19:12:49.0661863Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e9959abdffa349a787b846c6a22b880a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0582\",\r\n \"name\": \"testWS-0582\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:12:53.2054482Z\",\r\n \"modifiedOn\": \"2016-09-16T19:13:12.8381611Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9f462c5ae8d64a02a5bee6e6e15c791b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0583\",\r\n \"name\": \"testWS-0583\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:13:20.2803653Z\",\r\n \"modifiedOn\": \"2016-09-16T19:13:34.0203382Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a6fef5c515f4d91b4a252351068a61e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0584\",\r\n \"name\": \"testWS-0584\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:13:39.1088486Z\",\r\n \"modifiedOn\": \"2016-09-16T19:13:47.5275707Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e07ffce15daa4aa38391ceab922a564e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0585\",\r\n \"name\": \"testWS-0585\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:13:47.7067661Z\",\r\n \"modifiedOn\": \"2016-09-16T19:14:07.3464426Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4e335575ad33458d94d49103dc8ff112/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0586\",\r\n \"name\": \"testWS-0586\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:14:13.4638043Z\",\r\n \"modifiedOn\": \"2016-09-16T19:14:24.1956852Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/edcf74f68f69432a9012713654c3b863/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0587\",\r\n \"name\": \"testWS-0587\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:14:26.8643592Z\",\r\n \"modifiedOn\": \"2016-09-16T19:14:38.1967831Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a43ad066facf401ab4b1835cf886dd25/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0588\",\r\n \"name\": \"testWS-0588\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:14:41.637329Z\",\r\n \"modifiedOn\": \"2016-09-16T19:14:55.4168763Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca1b31ae7d67418fa1f64794d5482df3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0589\",\r\n \"name\": \"testWS-0589\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:14:56.6561546Z\",\r\n \"modifiedOn\": \"2016-09-16T19:15:15.9238759Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/52f4c6350ddc47e3aff60c99c9b903bb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0590\",\r\n \"name\": \"testWS-0590\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:15:19.7248027Z\",\r\n \"modifiedOn\": \"2016-09-16T19:15:35.0899237Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/65298c90dfac4bb9bd5ad2c7887b1473/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0591\",\r\n \"name\": \"testWS-0591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:15:39.990306Z\",\r\n \"modifiedOn\": \"2016-09-16T19:15:50.8870969Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddf946ec52a54419a84dfaae1b01228e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0592\",\r\n \"name\": \"testWS-0592\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:15:57.489511Z\",\r\n \"modifiedOn\": \"2016-09-16T19:16:11.02543Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ccb906840f4c4401b3ea0739d2172320/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0593\",\r\n \"name\": \"testWS-0593\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:16:14.371921Z\",\r\n \"modifiedOn\": \"2016-09-16T19:16:27.914681Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e567e7ee8acd4e8b87c020be7ea4660f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0594\",\r\n \"name\": \"testWS-0594\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:16:33.853886Z\",\r\n \"modifiedOn\": \"2016-09-16T19:16:48.8491865Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e4221b90f5e642c2979a6247aad10712/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0595\",\r\n \"name\": \"testWS-0595\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:16:55.1731512Z\",\r\n \"modifiedOn\": \"2016-09-16T19:17:09.8694112Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/15ba1edd93c841268c8d974ea5fdf47d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0596\",\r\n \"name\": \"testWS-0596\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:17:13.2332037Z\",\r\n \"modifiedOn\": \"2016-09-16T19:17:25.8323186Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7bae949a7cc54f6fbd3a96158ea03904/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0597\",\r\n \"name\": \"testWS-0597\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:17:31.7538834Z\",\r\n \"modifiedOn\": \"2016-09-16T19:17:43.342934Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca092d96a6ea4a8f928f18e9a9642b45/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0598\",\r\n \"name\": \"testWS-0598\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:17:50.0190059Z\",\r\n \"modifiedOn\": \"2016-09-16T19:18:07.5007877Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17fe19d611c54b5b99cc46a0d30409e9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0599\",\r\n \"name\": \"testWS-0599\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:18:09.666959Z\",\r\n \"modifiedOn\": \"2016-09-16T19:18:22.2859803Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6e9f444a15d2447ab82a487ae1d327d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0600\",\r\n \"name\": \"testWS-0600\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:18:30.8324489Z\",\r\n \"modifiedOn\": \"2016-09-16T19:18:50.4257357Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2900950efabb4073b737672fbf172d99/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0601\",\r\n \"name\": \"testWS-0601\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:18:53.3956921Z\",\r\n \"modifiedOn\": \"2016-09-16T19:19:06.7355596Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ad76e24a2cf54acca4a7128ff2e77a35/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0602\",\r\n \"name\": \"testWS-0602\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:19:13.0353783Z\",\r\n \"modifiedOn\": \"2016-09-16T19:19:26.354631Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e3d8db1fbdeb44578d120f76236d7e1f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0603\",\r\n \"name\": \"testWS-0603\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:19:26.9113231Z\",\r\n \"modifiedOn\": \"2016-09-16T19:19:40.5923882Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0fdab12329d24e25ab282c31cc33af19/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0604\",\r\n \"name\": \"testWS-0604\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:19:46.8886653Z\",\r\n \"modifiedOn\": \"2016-09-16T19:19:59.0142709Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2bcc5d5f743e48ca9c9b796cbbf95530/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0605\",\r\n \"name\": \"testWS-0605\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:20:04.7595066Z\",\r\n \"modifiedOn\": \"2016-09-16T19:20:13.1849369Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29e03b7782214ee2b0ff541e8f11c206/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0606\",\r\n \"name\": \"testWS-0606\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:20:16.3293954Z\",\r\n \"modifiedOn\": \"2016-09-16T19:20:29.8830197Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/81311538a56d40b6ae230e8e315609c3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0607\",\r\n \"name\": \"testWS-0607\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:20:34.5292483Z\",\r\n \"modifiedOn\": \"2016-09-16T19:20:54.8581462Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3baf879ee4934f6587a9bf7c4008a228/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0608\",\r\n \"name\": \"testWS-0608\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:20:57.2138551Z\",\r\n \"modifiedOn\": \"2016-09-16T19:21:12.4830921Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/32dce0991d754c6c996a19766cadd710/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0609\",\r\n \"name\": \"testWS-0609\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:21:15.7426397Z\",\r\n \"modifiedOn\": \"2016-09-16T19:21:30.6975961Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9de209d135f74ec59c80f0f323451674/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0610\",\r\n \"name\": \"testWS-0610\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:21:34.9818573Z\",\r\n \"modifiedOn\": \"2016-09-16T19:21:54.3631048Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca205e0923c4409a9fe5f205e2c3c352/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0611\",\r\n \"name\": \"testWS-0611\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:22:10.4157558Z\",\r\n \"modifiedOn\": \"2016-09-16T19:22:19.3832445Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/971b6109968c43a0ad1a92be6091d222/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0612\",\r\n \"name\": \"testWS-0612\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:22:27.2550708Z\",\r\n \"modifiedOn\": \"2016-09-16T19:22:40.5495029Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e0a59ba09488447da06b6ca5ed56028d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0613\",\r\n \"name\": \"testWS-0613\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:22:45.7785488Z\",\r\n \"modifiedOn\": \"2016-09-16T19:22:55.4684535Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7633861ae73f4e4fa54619d29b19029c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0614\",\r\n \"name\": \"testWS-0614\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:23:00.2946976Z\",\r\n \"modifiedOn\": \"2016-09-16T19:23:11.4088317Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/84ff66072d524c5bae0da03e9cb04d47/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0615\",\r\n \"name\": \"testWS-0615\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:23:12.3976426Z\",\r\n \"modifiedOn\": \"2016-09-16T19:23:28.0257672Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df55d7524d2e4f5597954fdf31d392f3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0616\",\r\n \"name\": \"testWS-0616\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:23:32.5341953Z\",\r\n \"modifiedOn\": \"2016-09-16T19:23:45.9462318Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe5e2079171b4106bb7943fd0559f8d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0617\",\r\n \"name\": \"testWS-0617\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:23:51.2324024Z\",\r\n \"modifiedOn\": \"2016-09-16T19:24:02.6037734Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/af1028237bc547faae20817c9cb18697/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0618\",\r\n \"name\": \"testWS-0618\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:24:08.1468076Z\",\r\n \"modifiedOn\": \"2016-09-16T19:24:17.5900071Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/08204567467d4a9986757cde30435d19/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0619\",\r\n \"name\": \"testWS-0619\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:24:18.2090691Z\",\r\n \"modifiedOn\": \"2016-09-16T19:24:30.9472932Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8143f199316e44bca68dcd6447820669/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0620\",\r\n \"name\": \"testWS-0620\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:24:34.2894192Z\",\r\n \"modifiedOn\": \"2016-09-16T19:24:46.1249714Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5126e91081904cd5a6042b2df895d9a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0621\",\r\n \"name\": \"testWS-0621\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:24:48.2335392Z\",\r\n \"modifiedOn\": \"2016-09-16T19:25:06.2257877Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/88bc5b1d20d5493084e8c8ce3827fc1c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0622\",\r\n \"name\": \"testWS-0622\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:25:14.4469989Z\",\r\n \"modifiedOn\": \"2016-09-16T19:25:26.5138689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0e8188354b8d4288affca803413f2188/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0623\",\r\n \"name\": \"testWS-0623\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:25:33.139507Z\",\r\n \"modifiedOn\": \"2016-09-16T19:25:46.4135417Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e71a163aae764167890e3b3a2df24df0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0624\",\r\n \"name\": \"testWS-0624\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:25:48.459165Z\",\r\n \"modifiedOn\": \"2016-09-16T19:26:09.3929475Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b413093a54148a891a70943e751499a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0625\",\r\n \"name\": \"testWS-0625\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:26:15.3100241Z\",\r\n \"modifiedOn\": \"2016-09-16T19:26:32.6978023Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/91aaff81b9e14dec82580a2d5322b5ac/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0626\",\r\n \"name\": \"testWS-0626\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:26:35.49125Z\",\r\n \"modifiedOn\": \"2016-09-16T19:26:48.4355207Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f2098d91ce7e4960b58820ac519defb0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0627\",\r\n \"name\": \"testWS-0627\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:26:55.8627435Z\",\r\n \"modifiedOn\": \"2016-09-16T19:27:06.423062Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d0fbb7a343e04329a8be01f91cd5a7e0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0628\",\r\n \"name\": \"testWS-0628\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:27:12.6468041Z\",\r\n \"modifiedOn\": \"2016-09-16T19:27:25.7403056Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec2c7f6027e34c77a16a0f3fc6236e99/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0629\",\r\n \"name\": \"testWS-0629\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:27:30.8661488Z\",\r\n \"modifiedOn\": \"2016-09-16T19:27:40.5746774Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa3fc2c8a0fe4a359488ac291ba14d8a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0630\",\r\n \"name\": \"testWS-0630\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:27:45.9135221Z\",\r\n \"modifiedOn\": \"2016-09-16T19:27:55.7704519Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2b51b84b46448adba88d19fce822521/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0631\",\r\n \"name\": \"testWS-0631\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:28:04.4337745Z\",\r\n \"modifiedOn\": \"2016-09-16T19:28:19.5221029Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2eb663e4ddb946dc8d152adb17743e30/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0632\",\r\n \"name\": \"testWS-0632\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:28:25.8223527Z\",\r\n \"modifiedOn\": \"2016-09-16T19:28:50.6441848Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2420516cc1594fdbb86af2f6b348d139/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0633\",\r\n \"name\": \"testWS-0633\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:28:56.3884433Z\",\r\n \"modifiedOn\": \"2016-09-16T19:29:08.7038346Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0d1bb55188c487180ba0b90d7d2423a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0634\",\r\n \"name\": \"testWS-0634\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:29:16.7903498Z\",\r\n \"modifiedOn\": \"2016-09-16T19:29:27.4942171Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/59f37f90806f49f2b3362154290ea9df/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0635\",\r\n \"name\": \"testWS-0635\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:29:32.3487419Z\",\r\n \"modifiedOn\": \"2016-09-16T19:29:51.5572483Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7a122f1d67554986b4138728ac9f9e0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0636\",\r\n \"name\": \"testWS-0636\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:29:57.7109496Z\",\r\n \"modifiedOn\": \"2016-09-16T19:30:10.2685754Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1138f569a1d84e52a8f08b9567541fe2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0637\",\r\n \"name\": \"testWS-0637\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:30:18.3009539Z\",\r\n \"modifiedOn\": \"2016-09-16T19:30:34.2864496Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/18524ec07b554fdb990c47a6bd7ce3db/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0638\",\r\n \"name\": \"testWS-0638\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:30:39.1935458Z\",\r\n \"modifiedOn\": \"2016-09-16T19:30:56.8140862Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d238de1534c4577ae599d741f587908/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0639\",\r\n \"name\": \"testWS-0639\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:30:59.3338298Z\",\r\n \"modifiedOn\": \"2016-09-16T19:31:18.0992019Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8873981a6d2c43fd9df098c1b490328b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0640\",\r\n \"name\": \"testWS-0640\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:31:22.1681793Z\",\r\n \"modifiedOn\": \"2016-09-16T19:31:37.4710137Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dbee9274e4534bc3990f5bfad7a3253c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0641\",\r\n \"name\": \"testWS-0641\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:31:40.2652832Z\",\r\n \"modifiedOn\": \"2016-09-16T19:31:54.2659365Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ececd4dfd7eb4981a3f47847029ac52a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0642\",\r\n \"name\": \"testWS-0642\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:31:59.946871Z\",\r\n \"modifiedOn\": \"2016-09-16T19:32:14.0804855Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3bdce10ff4c9436695f9c57255027cbb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0643\",\r\n \"name\": \"testWS-0643\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:32:19.9762325Z\",\r\n \"modifiedOn\": \"2016-09-16T19:32:35.2307691Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/946ab5d496ef4c9a9741e32b8e54fa88/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0644\",\r\n \"name\": \"testWS-0644\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:32:42.1040707Z\",\r\n \"modifiedOn\": \"2016-09-16T19:32:54.0236447Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d84c56a235ea44c68fb686a9401ff654/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0645\",\r\n \"name\": \"testWS-0645\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:33:00.0624593Z\",\r\n \"modifiedOn\": \"2016-09-16T19:33:12.1428292Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2fba8275e0cd4cb6a29bcc5738fa1a8d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0646\",\r\n \"name\": \"testWS-0646\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:33:18.500494Z\",\r\n \"modifiedOn\": \"2016-09-16T19:33:33.7045555Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/516bb4620a30485da99965d6ca112fbe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0647\",\r\n \"name\": \"testWS-0647\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:33:39.8043953Z\",\r\n \"modifiedOn\": \"2016-09-16T19:33:51.6056384Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c4a741fc9c3c4e58ab7db6aa6784eae5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0648\",\r\n \"name\": \"testWS-0648\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:33:52.2130148Z\",\r\n \"modifiedOn\": \"2016-09-16T19:34:06.7237409Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29fccf39d9f34690a83b78df7416d882/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0649\",\r\n \"name\": \"testWS-0649\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:34:12.1083895Z\",\r\n \"modifiedOn\": \"2016-09-16T19:34:27.5228319Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b98da2c963c473dbc2ff7efa09377a5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0650\",\r\n \"name\": \"testWS-0650\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:34:26.7301385Z\",\r\n \"modifiedOn\": \"2016-09-16T19:34:45.0436808Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0df9f9696e043af894b9f706a088c11/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0651\",\r\n \"name\": \"testWS-0651\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:34:53.9047352Z\",\r\n \"modifiedOn\": \"2016-09-16T19:35:05.6403883Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ef2ee2fd0cdf45b196eb1886dbaf63ef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0652\",\r\n \"name\": \"testWS-0652\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:35:07.7886991Z\",\r\n \"modifiedOn\": \"2016-09-16T19:35:28.9615371Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a3ee34eae9234990832ee410435f4316/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0653\",\r\n \"name\": \"testWS-0653\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:35:33.079019Z\",\r\n \"modifiedOn\": \"2016-09-16T19:35:50.8765405Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7d6254188d44463391b3f36516ec39cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0654\",\r\n \"name\": \"testWS-0654\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:35:55.9124149Z\",\r\n \"modifiedOn\": \"2016-09-16T19:36:08.345286Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60ec87e1074d48c1bf6d7a51c75f8786/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0655\",\r\n \"name\": \"testWS-0655\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:36:12.9202912Z\",\r\n \"modifiedOn\": \"2016-09-16T19:36:26.5337812Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a0cf53257964e9faa61b6fb5a0dc25d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0656\",\r\n \"name\": \"testWS-0656\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:36:28.143484Z\",\r\n \"modifiedOn\": \"2016-09-16T19:36:43.0032563Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42c9e3c79388494685bc1b292265cbfb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0657\",\r\n \"name\": \"testWS-0657\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:36:48.6695836Z\",\r\n \"modifiedOn\": \"2016-09-16T19:37:00.2433645Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/de1f84fc2c784975a3188a6d81e3a4d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0658\",\r\n \"name\": \"testWS-0658\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:37:09.1773337Z\",\r\n \"modifiedOn\": \"2016-09-16T19:37:23.0639171Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c0d1292bd9494e2db5795cb5a90d4f5f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0659\",\r\n \"name\": \"testWS-0659\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:37:27.7261045Z\",\r\n \"modifiedOn\": \"2016-09-16T19:37:38.9799713Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/802ce58ad1074bb085283d099de08757/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0660\",\r\n \"name\": \"testWS-0660\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:37:45.9342471Z\",\r\n \"modifiedOn\": \"2016-09-16T19:37:57.0519689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8dc10289b0694bcf84d8133d26d839a9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0661\",\r\n \"name\": \"testWS-0661\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:38:03.264416Z\",\r\n \"modifiedOn\": \"2016-09-16T19:38:19.8209415Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b528fccd5bf04a94a853e8def937344c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0662\",\r\n \"name\": \"testWS-0662\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:38:26.9050714Z\",\r\n \"modifiedOn\": \"2016-09-16T19:38:42.2383242Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/93a0069fe4f2463f81a770fdedf0fec9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0663\",\r\n \"name\": \"testWS-0663\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:38:44.9464324Z\",\r\n \"modifiedOn\": \"2016-09-16T19:38:59.5375793Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1259f830d3a346d6b5cb0048b8ac31db/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0664\",\r\n \"name\": \"testWS-0664\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:39:00.7621759Z\",\r\n \"modifiedOn\": \"2016-09-16T19:39:11.9360765Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a45e3973131244e7b45bf1e86a1ad5cb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0665\",\r\n \"name\": \"testWS-0665\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:39:13.3436212Z\",\r\n \"modifiedOn\": \"2016-09-16T19:39:29.8071359Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5fe1a405428e43feb89af93cd0c4391e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0666\",\r\n \"name\": \"testWS-0666\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:39:33.2163263Z\",\r\n \"modifiedOn\": \"2016-09-16T19:39:52.7966371Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7c779962bb3f40edac782f164e0bd882/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0667\",\r\n \"name\": \"testWS-0667\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:39:56.6004237Z\",\r\n \"modifiedOn\": \"2016-09-16T19:40:05.9148191Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3ccd22185f9d4ed2b765b4527032b04b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0668\",\r\n \"name\": \"testWS-0668\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:40:09.0113878Z\",\r\n \"modifiedOn\": \"2016-09-16T19:40:21.6197051Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/af8ea0a121f14843a23b0086b4e76e4d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0669\",\r\n \"name\": \"testWS-0669\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:40:23.8226835Z\",\r\n \"modifiedOn\": \"2016-09-16T19:40:42.5717789Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/009c60a640034e62b0c319b6e371d419/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0670\",\r\n \"name\": \"testWS-0670\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:40:50.38709Z\",\r\n \"modifiedOn\": \"2016-09-16T19:41:04.1529317Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/729c45c64c5f4304a4a9b35264ad34ca/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0671\",\r\n \"name\": \"testWS-0671\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:41:08.6750684Z\",\r\n \"modifiedOn\": \"2016-09-16T19:41:24.2942051Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9bf31c39027e4ea59de2131903e93835/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0672\",\r\n \"name\": \"testWS-0672\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:41:30.0937483Z\",\r\n \"modifiedOn\": \"2016-09-16T19:41:40.7370375Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6dd2ae13aebf4ae8b26eef7a44cc07fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0673\",\r\n \"name\": \"testWS-0673\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:41:48.4270534Z\",\r\n \"modifiedOn\": \"2016-09-16T19:42:00.2156619Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0d18051d042a4b4f8b18a92547e018eb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0674\",\r\n \"name\": \"testWS-0674\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:42:06.543628Z\",\r\n \"modifiedOn\": \"2016-09-16T19:42:18.4503528Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d1b929bdc5204b51bd72c2f9fa603bc0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0675\",\r\n \"name\": \"testWS-0675\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:42:25.1570345Z\",\r\n \"modifiedOn\": \"2016-09-16T19:42:36.2991462Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b6b76e3afc34e5e93213a34a12f43af/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0676\",\r\n \"name\": \"testWS-0676\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:42:43.7883118Z\",\r\n \"modifiedOn\": \"2016-09-16T19:42:53.6076639Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d98fe1e58c30496cad2be7381533a6cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0677\",\r\n \"name\": \"testWS-0677\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:42:56.5144265Z\",\r\n \"modifiedOn\": \"2016-09-16T19:43:10.9274446Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60607aa2b2ef4c638fd468c2c3f854c7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0678\",\r\n \"name\": \"testWS-0678\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:43:16.0201731Z\",\r\n \"modifiedOn\": \"2016-09-16T19:43:27.2700917Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/10050f9149ba4ba6a9bdf280851fb987/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0679\",\r\n \"name\": \"testWS-0679\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:43:35.3188483Z\",\r\n \"modifiedOn\": \"2016-09-16T19:43:54.5878824Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/638e42df2b014c848f8c80d6ccc97b74/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0680\",\r\n \"name\": \"testWS-0680\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:44:00.4162963Z\",\r\n \"modifiedOn\": \"2016-09-16T19:44:08.890007Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d56aa3912c7545a1b20ce12ca6bb1406/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0681\",\r\n \"name\": \"testWS-0681\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:44:13.6385047Z\",\r\n \"modifiedOn\": \"2016-09-16T19:44:27.958141Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a008cff5dbd245189256ac2c7f6218ed/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0682\",\r\n \"name\": \"testWS-0682\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:44:35.2818542Z\",\r\n \"modifiedOn\": \"2016-09-16T19:44:46.1480939Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f09f08143c5f4b749f74e2dc9bca2ce9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0683\",\r\n \"name\": \"testWS-0683\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:44:53.1506105Z\",\r\n \"modifiedOn\": \"2016-09-16T19:45:06.7722536Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df8de57a59a543f6b397369b0295ca5b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0684\",\r\n \"name\": \"testWS-0684\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:45:10.9440721Z\",\r\n \"modifiedOn\": \"2016-09-16T19:45:24.1005443Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a0df88eea8aa44a5b6f2aa1f4969e566/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0685\",\r\n \"name\": \"testWS-0685\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:45:29.3123716Z\",\r\n \"modifiedOn\": \"2016-09-16T19:45:42.6956499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bcaaaf211ec645c989b479e680d7dbf1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0686\",\r\n \"name\": \"testWS-0686\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:45:48.6907835Z\",\r\n \"modifiedOn\": \"2016-09-16T19:46:04.2973153Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/921964b5a4bc4cb79bf4cf6d313b65be/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0687\",\r\n \"name\": \"testWS-0687\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:46:10.092897Z\",\r\n \"modifiedOn\": \"2016-09-16T19:46:20.4869397Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/334e432f8e5a420bb760d864ddebbfb5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0688\",\r\n \"name\": \"testWS-0688\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:46:27.6805963Z\",\r\n \"modifiedOn\": \"2016-09-16T19:46:39.9926061Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/efb00f6810ae4d9b875e4ec55ec6459e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0689\",\r\n \"name\": \"testWS-0689\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:46:44.3692814Z\",\r\n \"modifiedOn\": \"2016-09-16T19:46:55.2349556Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9cde652d98e3498aa7e24e0479c962e1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0690\",\r\n \"name\": \"testWS-0690\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:47:09.771835Z\",\r\n \"modifiedOn\": \"2016-09-16T19:47:26.1998432Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1ff44b1ad65c484da33badec1113fcff/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0691\",\r\n \"name\": \"testWS-0691\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:47:32.8977154Z\",\r\n \"modifiedOn\": \"2016-09-16T19:47:47.0431779Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8918f3b0e62845cf86a1e667e945b617/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0692\",\r\n \"name\": \"testWS-0692\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:47:49.9769701Z\",\r\n \"modifiedOn\": \"2016-09-16T19:47:59.5921341Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1a187ff729654c22b6ea7cc0881a9bed/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0693\",\r\n \"name\": \"testWS-0693\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:48:02.4150941Z\",\r\n \"modifiedOn\": \"2016-09-16T19:48:16.6314747Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ebf16a53346440db761c7311082271e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0694\",\r\n \"name\": \"testWS-0694\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:48:19.6922062Z\",\r\n \"modifiedOn\": \"2016-09-16T19:48:29.627904Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a8f53c21decd43d2a611b79a49c281f0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0695\",\r\n \"name\": \"testWS-0695\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:48:33.185728Z\",\r\n \"modifiedOn\": \"2016-09-16T19:48:45.006154Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cdc88e76d79d47549020e17f3fd3995e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0696\",\r\n \"name\": \"testWS-0696\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:48:58.2516039Z\",\r\n \"modifiedOn\": \"2016-09-16T19:49:17.1533657Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/58a54cdb284c4167b6c259ca8bd9aa33/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0697\",\r\n \"name\": \"testWS-0697\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:49:21.4643078Z\",\r\n \"modifiedOn\": \"2016-09-16T19:49:31.0923565Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5fee41b3f26a4b21b1196f6570dc3fa0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0698\",\r\n \"name\": \"testWS-0698\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:49:33.6757934Z\",\r\n \"modifiedOn\": \"2016-09-16T19:49:42.4784182Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3e788f69dea34170b7e1d8088fbb44d7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0699\",\r\n \"name\": \"testWS-0699\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:49:45.9609089Z\",\r\n \"modifiedOn\": \"2016-09-16T19:49:57.0238837Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e1de56baa7b24722b0ba9562f223ef1d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0700\",\r\n \"name\": \"testWS-0700\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:50:09.7416594Z\",\r\n \"modifiedOn\": \"2016-09-16T19:50:22.6232975Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3318926223d149c98c47e1c9698b6d75/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0701\",\r\n \"name\": \"testWS-0701\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:50:26.6143335Z\",\r\n \"modifiedOn\": \"2016-09-16T19:50:38.0194462Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6ec24de7e54f4eab975cfd52ca1f1fa2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0702\",\r\n \"name\": \"testWS-0702\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:50:44.8106423Z\",\r\n \"modifiedOn\": \"2016-09-16T19:50:58.3899236Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c6e11727dd7d4f41ac95cf22851d8def/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0703\",\r\n \"name\": \"testWS-0703\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:51:02.8458836Z\",\r\n \"modifiedOn\": \"2016-09-16T19:51:18.2597111Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ba0e10d5bd8146159e26074d752440b6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0704\",\r\n \"name\": \"testWS-0704\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:51:20.6170785Z\",\r\n \"modifiedOn\": \"2016-09-16T19:51:31.5896945Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9a1290ea45814bb09cb2ca64fb182896/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0705\",\r\n \"name\": \"testWS-0705\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:51:37.62084Z\",\r\n \"modifiedOn\": \"2016-09-16T19:51:51.5755187Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5b58f90926884daba5168963101111e7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0706\",\r\n \"name\": \"testWS-0706\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:51:57.3202676Z\",\r\n \"modifiedOn\": \"2016-09-16T19:52:10.7917989Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/daec82d56d804d93ae77ea95635c6320/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0707\",\r\n \"name\": \"testWS-0707\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:52:14.9557114Z\",\r\n \"modifiedOn\": \"2016-09-16T19:52:25.6946748Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b13171f49814bdea6f206448c07a4a6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0708\",\r\n \"name\": \"testWS-0708\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:52:30.6555944Z\",\r\n \"modifiedOn\": \"2016-09-16T19:52:49.7755899Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/24932a95f9af4ec6b9c76d767d2b6558/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0709\",\r\n \"name\": \"testWS-0709\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:52:54.7616623Z\",\r\n \"modifiedOn\": \"2016-09-16T19:53:05.1778118Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4c950d2491814917ae8a00824714d567/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0710\",\r\n \"name\": \"testWS-0710\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:53:06.9366412Z\",\r\n \"modifiedOn\": \"2016-09-16T19:53:17.7785808Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bf6602b33a2a447088059dd2e414b1cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0711\",\r\n \"name\": \"testWS-0711\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:53:25.8192641Z\",\r\n \"modifiedOn\": \"2016-09-16T19:53:35.7673762Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7139a7a244ea4de28935e6402b48e18c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0712\",\r\n \"name\": \"testWS-0712\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:53:43.523854Z\",\r\n \"modifiedOn\": \"2016-09-16T19:53:55.0200009Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4c1728e582ae4420abe8b52b42ba3354/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0713\",\r\n \"name\": \"testWS-0713\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:54:01.7651428Z\",\r\n \"modifiedOn\": \"2016-09-16T19:54:11.2610319Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/82219c30ec0e4f2fae9665e1cb206367/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0714\",\r\n \"name\": \"testWS-0714\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:54:16.1509329Z\",\r\n \"modifiedOn\": \"2016-09-16T19:54:28.1689649Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5d2b71b3abba407ea413057f8d28d227/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0715\",\r\n \"name\": \"testWS-0715\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:54:32.767524Z\",\r\n \"modifiedOn\": \"2016-09-16T19:54:45.6234716Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9684c0607fa64890b1b1a54317f0c3cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0716\",\r\n \"name\": \"testWS-0716\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:54:52.7493Z\",\r\n \"modifiedOn\": \"2016-09-16T19:55:06.7378218Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6708d2da6ff943f9ad965a4619a5c5cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0717\",\r\n \"name\": \"testWS-0717\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:55:08.9372023Z\",\r\n \"modifiedOn\": \"2016-09-16T19:55:19.2261677Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/933a0f5ea2024157b27af470e2948e33/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0718\",\r\n \"name\": \"testWS-0718\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:55:22.2977009Z\",\r\n \"modifiedOn\": \"2016-09-16T19:55:32.4183032Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/956b84732229434e8f203c5afcda68a7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0719\",\r\n \"name\": \"testWS-0719\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:55:39.8823683Z\",\r\n \"modifiedOn\": \"2016-09-16T19:55:52.5226442Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5793d209f2da4d77bf6dc6d2afac413e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0720\",\r\n \"name\": \"testWS-0720\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:55:56.532187Z\",\r\n \"modifiedOn\": \"2016-09-16T19:56:14.1269312Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e2bddc3767ea44e49284dce44cf88673/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0721\",\r\n \"name\": \"testWS-0721\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:56:20.3951181Z\",\r\n \"modifiedOn\": \"2016-09-16T19:56:31.0180872Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5660a29ef5904fabb317d63ab1c1229d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0722\",\r\n \"name\": \"testWS-0722\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:56:39.2867566Z\",\r\n \"modifiedOn\": \"2016-09-16T19:56:48.1483714Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5cccd3dd25af40f8a18b4779dd85ec29/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0723\",\r\n \"name\": \"testWS-0723\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:56:54.6090965Z\",\r\n \"modifiedOn\": \"2016-09-16T19:57:10.2594293Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/582e75fef3184a1d97878f46c0cf9376/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0724\",\r\n \"name\": \"testWS-0724\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:57:13.8904723Z\",\r\n \"modifiedOn\": \"2016-09-16T19:57:26.7818458Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/364b10acc3ca4e63a495944273b4a915/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0725\",\r\n \"name\": \"testWS-0725\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:57:32.2604152Z\",\r\n \"modifiedOn\": \"2016-09-16T19:57:42.9207016Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/01d338ecdd1d453ea4ce5aa6701e8200/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0726\",\r\n \"name\": \"testWS-0726\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:57:48.5425002Z\",\r\n \"modifiedOn\": \"2016-09-16T19:58:07.7103526Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6454a43b824248ddbfa4279befac3afe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0727\",\r\n \"name\": \"testWS-0727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:58:11.1985832Z\",\r\n \"modifiedOn\": \"2016-09-16T19:58:22.9086923Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c3314109fb1a48ef986aaf620a097c63/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0728\",\r\n \"name\": \"testWS-0728\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:58:30.3413606Z\",\r\n \"modifiedOn\": \"2016-09-16T19:58:46.4216103Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c6a50ebaf406493ca0d0b30af2cae671/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0729\",\r\n \"name\": \"testWS-0729\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:58:52.8514069Z\",\r\n \"modifiedOn\": \"2016-09-16T19:59:10.3153331Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ecfca68a0ed641618311bb8650a2b1dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0730\",\r\n \"name\": \"testWS-0730\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:59:17.3686851Z\",\r\n \"modifiedOn\": \"2016-09-16T19:59:26.9667121Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/90a45440f72945beaefec5ba2760ec0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0731\",\r\n \"name\": \"testWS-0731\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:59:35.8050239Z\",\r\n \"modifiedOn\": \"2016-09-16T19:59:45.5155343Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cbf0ab0321464a1db0b4f905e3c866d9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0732\",\r\n \"name\": \"testWS-0732\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:59:52.9310751Z\",\r\n \"modifiedOn\": \"2016-09-16T20:00:03.3519395Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/85dda729c37c417eb5919621e1a1def1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0733\",\r\n \"name\": \"testWS-0733\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:00:10.6992564Z\",\r\n \"modifiedOn\": \"2016-09-16T20:00:20.68138Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/06e67bb254474f5d8f03d39e9d8de610/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0734\",\r\n \"name\": \"testWS-0734\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:00:27.6605564Z\",\r\n \"modifiedOn\": \"2016-09-16T20:00:42.9548545Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c8be06dc6f646bc956a4fb74965ed72/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0735\",\r\n \"name\": \"testWS-0735\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:00:47.6957562Z\",\r\n \"modifiedOn\": \"2016-09-16T20:01:12.382531Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e52f05e048604b71971534e829f0b7dd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0736\",\r\n \"name\": \"testWS-0736\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:01:34.1627517Z\",\r\n \"modifiedOn\": \"2016-09-16T20:01:49.0239465Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/08b8ae12957b466e9f60e899f1085c6c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0737\",\r\n \"name\": \"testWS-0737\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:01:55.48878Z\",\r\n \"modifiedOn\": \"2016-09-16T20:02:10.0091515Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1635ea2511eb4542ab38b06c01e58723/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0738\",\r\n \"name\": \"testWS-0738\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:02:12.306504Z\",\r\n \"modifiedOn\": \"2016-09-16T20:02:30.555081Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b7abe8f7cb746d3ab57db3edc6cee90/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0739\",\r\n \"name\": \"testWS-0739\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:02:36.2041745Z\",\r\n \"modifiedOn\": \"2016-09-16T20:02:46.3668557Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/68f5ad8244cd452a80d8cea5e4db82ef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0740\",\r\n \"name\": \"testWS-0740\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:02:54.6105342Z\",\r\n \"modifiedOn\": \"2016-09-16T20:03:03.6520614Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd36c2b30ef5413581155e1dcba24fbc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0741\",\r\n \"name\": \"testWS-0741\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:03:06.6840984Z\",\r\n \"modifiedOn\": \"2016-09-16T20:03:14.3899401Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b09e8d0e055e4f31b9e15d77de193a8a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0742\",\r\n \"name\": \"testWS-0742\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:03:21.1477848Z\",\r\n \"modifiedOn\": \"2016-09-16T20:03:30.4997802Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/66e04637bac341aa9d1f936295e5abdd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0743\",\r\n \"name\": \"testWS-0743\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:03:37.5544909Z\",\r\n \"modifiedOn\": \"2016-09-16T20:03:51.571749Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6cb34055696e4bde84dd42121dee8182/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0744\",\r\n \"name\": \"testWS-0744\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:03:56.3826613Z\",\r\n \"modifiedOn\": \"2016-09-16T20:04:06.1555481Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/302b465179304cc8b9a95d044ea99f64/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0745\",\r\n \"name\": \"testWS-0745\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:04:12.3684145Z\",\r\n \"modifiedOn\": \"2016-09-16T20:04:26.4330817Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d1eeaed5c8bc4176ad7483341b84b1d0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0746\",\r\n \"name\": \"testWS-0746\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:04:30.0689373Z\",\r\n \"modifiedOn\": \"2016-09-16T20:04:42.1873679Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/58a24a2e2754421582d3039c2e47c4f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0747\",\r\n \"name\": \"testWS-0747\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:04:50.7115457Z\",\r\n \"modifiedOn\": \"2016-09-16T20:05:03.4125025Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0dfb864e58bb4ce1bf9f7d0f69bdf790/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0748\",\r\n \"name\": \"testWS-0748\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:05:08.1836238Z\",\r\n \"modifiedOn\": \"2016-09-16T20:05:17.9506137Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1a569949ef0a4e7ba1e76b375b391c56/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0749\",\r\n \"name\": \"testWS-0749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:05:26.4092848Z\",\r\n \"modifiedOn\": \"2016-09-16T20:05:41.0498594Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8a698547ec684451890d28d81d007a99/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0750\",\r\n \"name\": \"testWS-0750\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:05:48.1336111Z\",\r\n \"modifiedOn\": \"2016-09-16T20:05:58.1199049Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6efa2085cc8042d6a008911b700179ba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0751\",\r\n \"name\": \"testWS-0751\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:06:07.3075123Z\",\r\n \"modifiedOn\": \"2016-09-16T20:06:26.2887017Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b161923dbf064eaf9c3ced9439e3f12f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0752\",\r\n \"name\": \"testWS-0752\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:06:38.8524462Z\",\r\n \"modifiedOn\": \"2016-09-16T20:06:49.0025074Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/88598b4eed014af086ad63815b16d0ce/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0753\",\r\n \"name\": \"testWS-0753\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:06:53.3529746Z\",\r\n \"modifiedOn\": \"2016-09-16T20:07:01.2688426Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ee59cfef6f04c0baf9b686c2b3a1c93/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0754\",\r\n \"name\": \"testWS-0754\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:07:04.7548577Z\",\r\n \"modifiedOn\": \"2016-09-16T20:07:17.0051616Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/522a2c9dbb5e4ceba1b852834ba2e5ce/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0755\",\r\n \"name\": \"testWS-0755\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:07:28.5286916Z\",\r\n \"modifiedOn\": \"2016-09-16T20:07:41.483296Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f4bad40a7fe74cfebcc8bab6cc3dd03b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0756\",\r\n \"name\": \"testWS-0756\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:07:46.5759349Z\",\r\n \"modifiedOn\": \"2016-09-16T20:07:59.5030972Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5f0d2df8340a45cd8d31eecbd06197dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0757\",\r\n \"name\": \"testWS-0757\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:08:03.5501617Z\",\r\n \"modifiedOn\": \"2016-09-16T20:08:15.1236369Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/02af58ea7c8f4d0099ed7e991a8c5ee2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0758\",\r\n \"name\": \"testWS-0758\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:08:21.1882612Z\",\r\n \"modifiedOn\": \"2016-09-16T20:08:36.3744605Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/18578794aa0747b0abdc42333474b502/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0759\",\r\n \"name\": \"testWS-0759\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:08:40.6764961Z\",\r\n \"modifiedOn\": \"2016-09-16T20:08:54.5195737Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/985eb0a7af3e4ed795c67677df30a86a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0760\",\r\n \"name\": \"testWS-0760\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:08:58.8941467Z\",\r\n \"modifiedOn\": \"2016-09-16T20:09:09.8937363Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/41851039f45c479ba8dfeff38689fc27/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0761\",\r\n \"name\": \"testWS-0761\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:09:16.1379562Z\",\r\n \"modifiedOn\": \"2016-09-16T20:09:29.7808689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe80fef9018241579c10aa3cd387ae98/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0762\",\r\n \"name\": \"testWS-0762\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:09:35.7661949Z\",\r\n \"modifiedOn\": \"2016-09-16T20:09:45.3113811Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/da33962165d94ff08c6124b1ec900551/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0763\",\r\n \"name\": \"testWS-0763\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:09:53.3243973Z\",\r\n \"modifiedOn\": \"2016-09-16T20:10:05.6299345Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8791f6f001d3476e88db6e29027b32af/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0764\",\r\n \"name\": \"testWS-0764\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:10:09.9479584Z\",\r\n \"modifiedOn\": \"2016-09-16T20:10:28.6797596Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/67b7ad6755484d9a9db98fcd2551d9c7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0765\",\r\n \"name\": \"testWS-0765\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:10:31.1757082Z\",\r\n \"modifiedOn\": \"2016-09-16T20:10:46.4671558Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7353d5b920b747a2a85145e219189798/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0766\",\r\n \"name\": \"testWS-0766\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:10:50.1604302Z\",\r\n \"modifiedOn\": \"2016-09-16T20:11:02.2743657Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a28301b7eac04f4188e12740131974dd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0767\",\r\n \"name\": \"testWS-0767\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:11:07.6202113Z\",\r\n \"modifiedOn\": \"2016-09-16T20:11:21.722331Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/56a1134c514b4398b35e0d2c123adebc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0768\",\r\n \"name\": \"testWS-0768\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:11:23.2848441Z\",\r\n \"modifiedOn\": \"2016-09-16T20:11:43.1811693Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1d378583cb284145a6919c95d22bd60a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0769\",\r\n \"name\": \"testWS-0769\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:11:47.1437253Z\",\r\n \"modifiedOn\": \"2016-09-16T20:11:56.7292773Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ce1da5e187e34dd5aa7566bf213da649/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0770\",\r\n \"name\": \"testWS-0770\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:11:59.5021883Z\",\r\n \"modifiedOn\": \"2016-09-16T20:12:10.058733Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a302f33d8bb74043afae6db5258a44e4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0771\",\r\n \"name\": \"testWS-0771\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:12:18.3185001Z\",\r\n \"modifiedOn\": \"2016-09-16T20:12:31.5340796Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/58a98b774784472d9c0bb3b234359730/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0772\",\r\n \"name\": \"testWS-0772\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:12:36.6119014Z\",\r\n \"modifiedOn\": \"2016-09-16T20:12:50.0488633Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/03b31e38f2544c6abf0833a1934e7acf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0773\",\r\n \"name\": \"testWS-0773\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:12:52.9272518Z\",\r\n \"modifiedOn\": \"2016-09-16T20:13:04.4051791Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/db84dc95116e416ba7ba267cf5dd3096/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0774\",\r\n \"name\": \"testWS-0774\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:13:11.9069978Z\",\r\n \"modifiedOn\": \"2016-09-16T20:13:21.9903538Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7041668a045042059c2a42d671c64b8f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0775\",\r\n \"name\": \"testWS-0775\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:13:26.104524Z\",\r\n \"modifiedOn\": \"2016-09-16T20:13:36.3006055Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/12098f1ed74b43c4ba95ceb6a226fc6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0776\",\r\n \"name\": \"testWS-0776\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:13:42.3234519Z\",\r\n \"modifiedOn\": \"2016-09-16T20:13:59.4725464Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/918660ea83ce459a9a610293e3762251/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0777\",\r\n \"name\": \"testWS-0777\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:14:05.6167039Z\",\r\n \"modifiedOn\": \"2016-09-16T20:14:16.5678039Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2df453495b5542b6a932656310b40a3d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0778\",\r\n \"name\": \"testWS-0778\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:14:22.2648338Z\",\r\n \"modifiedOn\": \"2016-09-16T20:14:35.0457056Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2227f48fac694ee0a6ed070a2d12ffaf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0779\",\r\n \"name\": \"testWS-0779\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:14:40.8217882Z\",\r\n \"modifiedOn\": \"2016-09-16T20:14:52.9626584Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/18bee67e12b446f4adbcee69b03f2c59/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0780\",\r\n \"name\": \"testWS-0780\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:14:59.828093Z\",\r\n \"modifiedOn\": \"2016-09-16T20:15:11.2715271Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9c8e4a4c6eba4a8186c2da64747f753a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0781\",\r\n \"name\": \"testWS-0781\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:15:17.4741803Z\",\r\n \"modifiedOn\": \"2016-09-16T20:15:29.7529209Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d6731bc31e2548dab2b6993ef9ab8a47/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0782\",\r\n \"name\": \"testWS-0782\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:15:35.5649917Z\",\r\n \"modifiedOn\": \"2016-09-16T20:15:48.3914316Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0d810e90110f44929a7080bf03c3d61d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0783\",\r\n \"name\": \"testWS-0783\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:15:55.4645892Z\",\r\n \"modifiedOn\": \"2016-09-16T20:16:08.4285963Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3b79c7a281f34f848d9409090245aef9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0784\",\r\n \"name\": \"testWS-0784\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:16:10.5972205Z\",\r\n \"modifiedOn\": \"2016-09-16T20:16:30.1152705Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/33426d37ac2e4210aa91b9cf16bd5852/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0785\",\r\n \"name\": \"testWS-0785\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:16:33.2366972Z\",\r\n \"modifiedOn\": \"2016-09-16T20:16:46.8333289Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c177c6f8a7514834965a8deac45f97c3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0786\",\r\n \"name\": \"testWS-0786\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:16:51.96544Z\",\r\n \"modifiedOn\": \"2016-09-16T20:17:01.2448813Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/81f82b3c2c8346a58f4d7ca77132e6f9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0787\",\r\n \"name\": \"testWS-0787\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:17:03.1805547Z\",\r\n \"modifiedOn\": \"2016-09-16T20:17:15.890652Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2a2b03446219413b93861fe8eff43142/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0788\",\r\n \"name\": \"testWS-0788\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:17:23.0541131Z\",\r\n \"modifiedOn\": \"2016-09-16T20:17:36.2129078Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77eb1943596c4a6aac0f1a62a0570976/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0789\",\r\n \"name\": \"testWS-0789\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:17:38.9388032Z\",\r\n \"modifiedOn\": \"2016-09-16T20:17:52.0222023Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/494cb59286764d7bad93ee590722787c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0790\",\r\n \"name\": \"testWS-0790\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:17:57.0268198Z\",\r\n \"modifiedOn\": \"2016-09-16T20:18:09.0631413Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f50023949ffc4bffa909806ec366c4d1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0791\",\r\n \"name\": \"testWS-0791\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:18:14.6701503Z\",\r\n \"modifiedOn\": \"2016-09-16T20:18:26.405682Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fb915f2264b34519aaffdd9c463c5620/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0792\",\r\n \"name\": \"testWS-0792\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:18:32.8831598Z\",\r\n \"modifiedOn\": \"2016-09-16T20:18:48.3549855Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/04c0168c96fd4bb694426e34de654864/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0793\",\r\n \"name\": \"testWS-0793\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:18:55.2075593Z\",\r\n \"modifiedOn\": \"2016-09-16T20:19:05.9088251Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/90b0867da6fe402c8424d5983748c31d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0794\",\r\n \"name\": \"testWS-0794\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:19:10.475535Z\",\r\n \"modifiedOn\": \"2016-09-16T20:19:26.3513587Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8880198ff4d44170bfe53d5bc35d323a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0795\",\r\n \"name\": \"testWS-0795\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:19:32.6188731Z\",\r\n \"modifiedOn\": \"2016-09-16T20:19:46.0604437Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ced484921fce48098c116fec25186f72/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0796\",\r\n \"name\": \"testWS-0796\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:19:50.0395552Z\",\r\n \"modifiedOn\": \"2016-09-16T20:19:59.3522862Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ccc36fbfacff4546a71d75cc8caba94f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0797\",\r\n \"name\": \"testWS-0797\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:20:03.6836471Z\",\r\n \"modifiedOn\": \"2016-09-16T20:20:11.5912192Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fc0a112ec0d64784a50cf0e26c3a6fc3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0798\",\r\n \"name\": \"testWS-0798\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:20:16.585597Z\",\r\n \"modifiedOn\": \"2016-09-16T20:20:24.4564526Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9d9108df62a34075aa6e1c26ce96e27f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0799\",\r\n \"name\": \"testWS-0799\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:20:28.0160971Z\",\r\n \"modifiedOn\": \"2016-09-16T20:20:45.8634806Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/356f1ab67d2244feab1756c143f8ec79/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0800\",\r\n \"name\": \"testWS-0800\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:45:18.1296246Z\",\r\n \"modifiedOn\": \"2016-09-16T20:45:30.2417955Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/01990c90f4534b7d8922cad772f71d8d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0801\",\r\n \"name\": \"testWS-0801\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:45:36.8956862Z\",\r\n \"modifiedOn\": \"2016-09-16T20:45:49.4662359Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/043365c1c9c8449f90cbacc906ef3fde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0802\",\r\n \"name\": \"testWS-0802\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:45:53.7324909Z\",\r\n \"modifiedOn\": \"2016-09-16T20:46:05.7477858Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/45e6c84784604a5f98070a6f1559e7b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0803\",\r\n \"name\": \"testWS-0803\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:46:11.8379575Z\",\r\n \"modifiedOn\": \"2016-09-16T20:46:20.7149849Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddc182ecefe941a992426d1317056447/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0804\",\r\n \"name\": \"testWS-0804\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:46:23.2750295Z\",\r\n \"modifiedOn\": \"2016-09-16T20:46:36.1795971Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2f4b6f17bdca4772a7ec417ca0031530/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0805\",\r\n \"name\": \"testWS-0805\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:46:40.9271097Z\",\r\n \"modifiedOn\": \"2016-09-16T20:46:53.8687519Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60cd85962dbc44f5a0748d24acd75ca0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0806\",\r\n \"name\": \"testWS-0806\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:46:57.8225639Z\",\r\n \"modifiedOn\": \"2016-09-16T20:47:12.3888834Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/10cf52abeeac49cdb3c6c25b24843224/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0807\",\r\n \"name\": \"testWS-0807\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:47:15.081276Z\",\r\n \"modifiedOn\": \"2016-09-16T20:47:30.3056505Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2e0d30d9c48b4914a049c1261c3dce73/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0808\",\r\n \"name\": \"testWS-0808\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:47:34.3498484Z\",\r\n \"modifiedOn\": \"2016-09-16T20:47:47.3037175Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dfca0a7a0aa245d28579be8325bd45f0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0809\",\r\n \"name\": \"testWS-0809\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:48:04.831843Z\",\r\n \"modifiedOn\": \"2016-09-16T20:48:24.2393791Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3b85f1e13e824d23bb79804a794bc709/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0810\",\r\n \"name\": \"testWS-0810\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:48:29.1909089Z\",\r\n \"modifiedOn\": \"2016-09-16T20:48:39.6543653Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6531d4e662004de599347ee8dd4184ec/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0811\",\r\n \"name\": \"testWS-0811\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:48:42.1821687Z\",\r\n \"modifiedOn\": \"2016-09-16T20:49:02.9018191Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/81280c64d5ce4d979a33909df0cedcdf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0812\",\r\n \"name\": \"testWS-0812\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:49:07.1814147Z\",\r\n \"modifiedOn\": \"2016-09-16T20:49:26.1176397Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4594749d465d41458bbaaaf92e9500d4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0813\",\r\n \"name\": \"testWS-0813\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:49:30.1688196Z\",\r\n \"modifiedOn\": \"2016-09-16T20:49:41.9130297Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d39eb00ec5a447eab74b3b62ed59e733/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0814\",\r\n \"name\": \"testWS-0814\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:49:49.3356276Z\",\r\n \"modifiedOn\": \"2016-09-16T20:49:57.0256656Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/241d314da84344fca2619019c2aa3905/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0815\",\r\n \"name\": \"testWS-0815\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:50:01.6408488Z\",\r\n \"modifiedOn\": \"2016-09-16T20:50:11.4157779Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d8e4264f36bf40f6b116179fc64eb90a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0816\",\r\n \"name\": \"testWS-0816\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:50:18.0811515Z\",\r\n \"modifiedOn\": \"2016-09-16T20:50:29.0454499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/174a53fd5cab464baa3c5c7e4118e2d0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0817\",\r\n \"name\": \"testWS-0817\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:50:34.3733581Z\",\r\n \"modifiedOn\": \"2016-09-16T20:50:50.4766835Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/94babeed873542de9f668bf65ba01e57/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0818\",\r\n \"name\": \"testWS-0818\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:50:53.2274538Z\",\r\n \"modifiedOn\": \"2016-09-16T20:51:06.0473493Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2a97f86ba654b4099ba52dd0ceb8a8a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0819\",\r\n \"name\": \"testWS-0819\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:51:10.1737287Z\",\r\n \"modifiedOn\": \"2016-09-16T20:51:26.9148638Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a75b344a41f7425f885358e132a9662d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0820\",\r\n \"name\": \"testWS-0820\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:51:31.0190469Z\",\r\n \"modifiedOn\": \"2016-09-16T20:51:43.1100163Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b9fab32519a45baaeece12f83da95bc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0821\",\r\n \"name\": \"testWS-0821\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:51:46.7761826Z\",\r\n \"modifiedOn\": \"2016-09-16T20:51:59.3318795Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e7c421ff6681484bb28f743bf875809f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0822\",\r\n \"name\": \"testWS-0822\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:52:02.8923114Z\",\r\n \"modifiedOn\": \"2016-09-16T20:52:13.3208262Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/75197398693a4fbd9dbb9f0cb598f64e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0823\",\r\n \"name\": \"testWS-0823\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:52:18.0898548Z\",\r\n \"modifiedOn\": \"2016-09-16T20:52:34.6645926Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77756a6dc7b9437cbbf823a2b0a52cf6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0824\",\r\n \"name\": \"testWS-0824\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:52:40.1283007Z\",\r\n \"modifiedOn\": \"2016-09-16T20:52:51.5975602Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe214fbafca1462da0ac8c553c242ff6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0825\",\r\n \"name\": \"testWS-0825\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:52:57.5884069Z\",\r\n \"modifiedOn\": \"2016-09-16T20:53:08.1633376Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4960e9849ab44889b94eda40afdbc6f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0826\",\r\n \"name\": \"testWS-0826\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:53:16.0777695Z\",\r\n \"modifiedOn\": \"2016-09-16T20:53:32.4606423Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4770c324bd634ef28f35fe0e74923e14/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0827\",\r\n \"name\": \"testWS-0827\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:53:40.0623183Z\",\r\n \"modifiedOn\": \"2016-09-16T20:53:54.4288196Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7f2eacc0c34f4d9886ab0b9766c4e25f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0828\",\r\n \"name\": \"testWS-0828\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:54:01.3463031Z\",\r\n \"modifiedOn\": \"2016-09-16T20:54:08.5837236Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b359b7833d74f9eb634d64adfc6235d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0829\",\r\n \"name\": \"testWS-0829\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:54:12.2342485Z\",\r\n \"modifiedOn\": \"2016-09-16T20:54:26.5307279Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29282cfdebab4bd087f4962c6366b8f4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0830\",\r\n \"name\": \"testWS-0830\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:54:31.5470651Z\",\r\n \"modifiedOn\": \"2016-09-16T20:54:40.7870899Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a315cfcdba1b4d21aaf50411e7378b98/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0831\",\r\n \"name\": \"testWS-0831\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:54:57.5470899Z\",\r\n \"modifiedOn\": \"2016-09-16T20:55:14.9641102Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec0d9d0e8f2d43bfa4f4ee6a6a7c2c55/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0832\",\r\n \"name\": \"testWS-0832\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:55:20.1301392Z\",\r\n \"modifiedOn\": \"2016-09-16T20:55:34.6607522Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5f2bd958cf5f4d5e8817372c2e9c7ee7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.10.14.23.42.34.884\",\r\n \"name\": \"Experimentcreate.2016.10.14.23.42.34.884\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-14T23:43:30.0892956Z\",\r\n \"modifiedOn\": \"2016-10-14T23:47:18.9609199Z\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e7275e5d9c67477a9526ba1abc6b2775/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.10.14.23.49.49.737\",\r\n \"name\": \"Experimentcreate.2016.10.14.23.49.49.737\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-14T23:50:22.2455974Z\",\r\n \"modifiedOn\": \"2016-10-14T23:52:47.8271155Z\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dec68722539445ae97fb0778a1239e08/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.26.18.16.33.505\",\r\n \"name\": \"Experimentcreate.2016.8.26.18.16.33.505\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-26T18:16:40.9887328Z\",\r\n \"modifiedOn\": \"2016-09-27T21:16:51.8626197Z\",\r\n \"title\": \"Multiple Web Service Inputs\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fcccf166a3ae43a4b6404bd19da0983d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorageweu\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/IntEnumWEU\",\r\n \"name\": \"IntEnumWEU\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-13T18:23:57.1091295Z\",\r\n \"modifiedOn\": \"2016-10-21T18:34:18.071001Z\",\r\n \"title\": \"IntEnum - WorkingHoursPerWeek\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7c453e0431d144f3aaabb00e2e1b6e90/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorageweu\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/IntEnumWorkingHo.2016.10.21.21.22.22.11\",\r\n \"name\": \"IntEnumWorkingHo.2016.10.21.21.22.22.11\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-21T21:22:40.6044069Z\",\r\n \"modifiedOn\": \"2016-10-21T21:41:01.5058513Z\",\r\n \"title\": \"IntEnum - WorkingHoursPerWeek\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c02f5422d385401d8858edfff3bf421c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorageweu\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract010\",\r\n \"name\": \"NewContract010\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2017-03-08T23:23:09.6553651Z\",\r\n \"modifiedOn\": \"2017-03-08T23:25:42.8178978Z\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c9f9e382755c4bda874e1ac9ba61aee7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163\",\r\n \"name\": \"amlws163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:28.1397481Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:34.213807Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1ae89aa2f984e5aa828d7015f3c94d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943\",\r\n \"name\": \"amlws1943\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:49.1859262Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:57.0363932Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e12854abfc8e4ff292386f3818de155a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297\",\r\n \"name\": \"amlws4297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:12.4691516Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:23.6390019Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17efc65f9f2f4853bd4013a391cadc22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591\",\r\n \"name\": \"amlws7591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:38.5768612Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:45.061854Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a7d335fb9b9463481090eb96763a2e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract001\",\r\n \"name\": \"NewContract001\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2017-02-17T00:24:24.1552313Z\",\r\n \"modifiedOn\": \"2017-02-17T00:24:32.2669181Z\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b053a7f94174f0faa5f13cd3e8c94c2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract002\",\r\n \"name\": \"NewContract002\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-17T00:33:03.8512904Z\",\r\n \"modifiedOn\": \"2017-02-17T00:42:34.4582508Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d0f845f243b447f78d8451b4505bc649/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract003\",\r\n \"name\": \"NewContract003\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-17T00:44:25.564549Z\",\r\n \"modifiedOn\": \"2017-02-17T00:44:33.7117254Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/059dc03e452a472db5b8a3400efd4894/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract004\",\r\n \"name\": \"NewContract004\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-17T01:25:06.672626Z\",\r\n \"modifiedOn\": \"2017-02-17T01:25:16.1216135Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bb7ea53385fb4d70b1eff1d547bd2329/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract005\",\r\n \"name\": \"NewContract005\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-17T01:31:51.6836659Z\",\r\n \"modifiedOn\": \"2017-02-17T01:32:05.8025273Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b5f3c5d01684f69ae647c79aa38bff1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract006\",\r\n \"name\": \"NewContract006\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-23T22:57:33.8759581Z\",\r\n \"modifiedOn\": \"2017-03-01T01:41:04.8984214Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b69d6075f78f45f49c51f9dd508a477c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract007\",\r\n \"name\": \"NewContract007\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-03T06:32:40.1485483Z\",\r\n \"modifiedOn\": \"2017-03-08T08:32:37.8239871Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/59a6b4c61163423b85f92673f7c992e5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract008\",\r\n \"name\": \"NewContract008\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-03T06:38:03.7089926Z\",\r\n \"modifiedOn\": \"2017-03-03T22:08:04.2090374Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/26f19e1ec25d473ca8b29bc57b815849/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract009\",\r\n \"name\": \"NewContract009\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-03T23:18:55.0112257Z\",\r\n \"modifiedOn\": \"2017-03-03T23:19:07.0777919Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/69b6eca21adc470eafd66911325e8795/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract011\",\r\n \"name\": \"NewContract011\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-08T23:24:41.5358803Z\",\r\n \"modifiedOn\": \"2017-03-08T23:24:50.2216176Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/866eb6693c3a4a339b554b5c8e4b3e02/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/SameName001\",\r\n \"name\": \"SameName001\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-24T22:53:03.6686046Z\",\r\n \"modifiedOn\": \"2017-02-24T22:53:17.4667932Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0e5a5f6c7a6749f7a8ac0fb37dd7b966/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test1a\",\r\n \"name\": \"test1a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-16T01:16:41.155513Z\",\r\n \"modifiedOn\": \"2017-02-16T01:33:49.6664929Z\",\r\n \"title\": \"Some title\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/317f183b66d344a892e6cabade18aa12/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/webServices?api-version=2017-01-01&%24skiptoken=Dc3dboIwAAXgdyHZ7pDCQIaJWbaFOojgRn9w3hWoUoFCaNWp8d1Hcm5OcnK%2buyH5n14L2ShjcTfQhuCvzzDF2fuaIGNh1FoPamFZF650yaUeWXtSs45JduDd1Gfsdhr5rOw7S50KVY5i0KKXyqps53Vvu8AMXD43Xdv3zFef%2bWbguUVQOX5V2HNrGPuzqPiorESUY6%2f6vZ4lrKyF5GvORinkYZILxMezKLl6Y4Mwz9N8EpYOsH0T2FOenxxXNRPcN1wu%2bTXe7LY1ICt4rVYtYHlwQg71omMvEhS6EYUEY5rSsNGRuAjcUbeC8bkCuuUomkfHsE5vvzVpMshJAPNtvcnC0MYNpUnjhRlON3RV3gjNjinxCGnSb0qhh48f6AfYJO92eUKAg1vKUBuHxQ2iAsYriiHKIZ0XLy2a%2fgDeDukaxYHxePwD\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "7319" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:00 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "b6acfe20-5054-4cff-a4dd-ffeb6e901805" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-request-id": [ - "de950655-9590-43b1-a42a-df1e08813afd" + "Vary": [ + "Accept-Encoding" + ], + "x-ms-original-request-ids": [ + "7e756a56-8071-4eac-9acf-54321ca611db", + "e2f81fdc-f62b-4300-ae4b-d8ae8eae36db", + "430ecc7f-39d3-481e-9233-5df7201c581c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14978" + ], + "x-ms-request-id": [ + "73b946e2-3478-458d-9bb8-c7e89d0df747" + ], + "x-ms-correlation-request-id": [ + "73b946e2-3478-458d-9bb8-c7e89d0df747" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011544Z:b6acfe20-5054-4cff-a4dd-ffeb6e901805" + "WESTCENTRALUS:20170309T081001Z:73b946e2-3478-458d-9bb8-c7e89d0df747" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzMjM3MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czQyOTc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce1fb5de-1b7d-4ad1-a290-af0f05c38756" + "0257594e-87dd-4f3d-aca6-47346d0c8b23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -1746,110 +1784,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:01 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/044d8cfd-35bd-4229-b4e6-dd97be34b476?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/50e50bb6-6bb8-4b68-ae54-eb861c041e72?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/044d8cfd-35bd-4229-b4e6-dd97be34b476?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "139" + ], "x-ms-correlation-request-id": [ - "c16e6c18-1fd1-410a-9878-b7d98c2211f1" + "c452e956-a628-4d64-b83d-293ed0040123" ], "x-ms-request-id": [ - "814e1e31-5e1a-4899-b7b0-2f624f7c34c5" + "3258b335-3726-4894-b618-c9782b0a37be" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1189" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011546Z:c16e6c18-1fd1-410a-9878-b7d98c2211f1" + "WESTCENTRALUS:20170309T081001Z:c452e956-a628-4d64-b83d-293ed0040123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/50e50bb6-6bb8-4b68-ae54-eb861c041e72?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/50e50bb6-6bb8-4b68-ae54-eb861c041e72?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzUwZTUwYmI2LTZiYjgtNGI2OC1hZTU0LWViODYxYzA0MWU3Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/044d8cfd-35bd-4229-b4e6-dd97be34b476?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ0ZDhjZmQtMzViZC00MjI5LWI0ZTYtZGQ5N2JlMzRiNDc2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/50e50bb6-6bb8-4b68-ae54-eb861c041e72\",\r\n \"name\": \"50e50bb6-6bb8-4b68-ae54-eb861c041e72\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:15:45.7370634Z\",\r\n \"endTime\": \"2016-05-18T01:15:47.0031925Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/044d8cfd-35bd-4229-b4e6-dd97be34b476\",\r\n \"name\": \"044d8cfd-35bd-4229-b4e6-dd97be34b476\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:10:05.0896763Z\",\r\n \"endTime\": \"2017-03-09T08:10:06.7283153Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:06 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "16" + ], "x-ms-correlation-request-id": [ - "7f861a18-cabc-4db1-90da-808b4ba4296d" + "2b6cce35-5e8c-419f-ac79-43ef151e84d0" ], "x-ms-request-id": [ - "8f05ae09-cf26-4c0a-b69a-ff3a27f51300" + "4d965162-0af4-4438-9c63-19d7e88e5582" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14977" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011551Z:7f861a18-cabc-4db1-90da-808b4ba4296d" + "WESTCENTRALUS:20170309T081006Z:2b6cce35-5e8c-419f-ac79-43ef151e84d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:50 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM3OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE2Mz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91ef7be5-13f3-4c30-9970-bf932627e055" + "f728288b-c43d-4d6b-8925-c451d7db2346" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -1860,110 +1909,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:06 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/1516f0ad-c817-4824-9c76-d13d989935a8?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/43a573c7-757a-4d1c-b600-d4c519b78bb1?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/1516f0ad-c817-4824-9c76-d13d989935a8?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "119" + ], "x-ms-correlation-request-id": [ - "1a467736-f94a-4ab0-97f7-8b91605feb32" + "ce54aa59-6846-413d-a6f2-76180b4544f9" ], "x-ms-request-id": [ - "1ef24e2e-72cd-4ed5-86a2-4ff732fe0442" + "55855cd5-16b8-4819-8ec3-e413d60170ac" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1188" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011552Z:1a467736-f94a-4ab0-97f7-8b91605feb32" + "WESTCENTRALUS:20170309T081007Z:ce54aa59-6846-413d-a6f2-76180b4544f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/43a573c7-757a-4d1c-b600-d4c519b78bb1?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/43a573c7-757a-4d1c-b600-d4c519b78bb1?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzQzYTU3M2M3LTc1N2EtNGQxYy1iNjAwLWQ0YzUxOWI3OGJiMT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/1516f0ad-c817-4824-9c76-d13d989935a8?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTUxNmYwYWQtYzgxNy00ODI0LTljNzYtZDEzZDk4OTkzNWE4P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/43a573c7-757a-4d1c-b600-d4c519b78bb1\",\r\n \"name\": \"43a573c7-757a-4d1c-b600-d4c519b78bb1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:15:52.4564183Z\",\r\n \"endTime\": \"2016-05-18T01:15:54.331431Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/1516f0ad-c817-4824-9c76-d13d989935a8\",\r\n \"name\": \"1516f0ad-c817-4824-9c76-d13d989935a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:10:08.6123464Z\",\r\n \"endTime\": \"2017-03-09T08:10:09.3044576Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "379" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:12 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], "x-ms-correlation-request-id": [ - "b116dccd-3e0b-4795-a2ad-0c2ce5b89d75" + "288a79dc-71c7-4e59-958d-58a5ba4f913b" ], "x-ms-request-id": [ - "72d89ea1-57c9-4422-bcf6-82496ad29dda" + "29f030b7-9de1-46d6-b55d-c29a432286cd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "14976" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011557Z:b116dccd-3e0b-4795-a2ad-0c2ce5b89d75" + "WESTCENTRALUS:20170309T081012Z:288a79dc-71c7-4e59-958d-58a5ba4f913b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:57 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNTgyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czc1OTE/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d64d51fa-9c6d-4cbe-bbe7-b06830f5eca1" + "f7aba5d7-98ec-421a-a7c6-c222fa4bf63a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -1974,110 +2034,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:12 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/7919b995-911b-492c-9159-1c284d48af01?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cbdd0584-b51c-45bd-b1f6-5578b80f297a?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7919b995-911b-492c-9159-1c284d48af01?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "118" + ], "x-ms-correlation-request-id": [ - "3b1cc8f6-4af0-43f0-992b-e268992751ca" + "4c976f8f-addd-462e-8eae-21f29f545d4c" ], "x-ms-request-id": [ - "b86a4899-fd9b-46ca-b4ac-0e3ea5c3f583" + "2b257052-6d01-4589-b59c-678d81fd86ce" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011558Z:3b1cc8f6-4af0-43f0-992b-e268992751ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:58 GMT" + "1187" ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/cbdd0584-b51c-45bd-b1f6-5578b80f297a?api-version=2016-05-01-preview" + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081012Z:4c976f8f-addd-462e-8eae-21f29f545d4c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cbdd0584-b51c-45bd-b1f6-5578b80f297a?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2NiZGQwNTg0LWI1MWMtNDViZC1iMWY2LTU1NzhiODBmMjk3YT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7919b995-911b-492c-9159-1c284d48af01?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzkxOWI5OTUtOTExYi00OTJjLTkxNTktMWMyODRkNDhhZjAxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cbdd0584-b51c-45bd-b1f6-5578b80f297a\",\r\n \"name\": \"cbdd0584-b51c-45bd-b1f6-5578b80f297a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:16:01.5404754Z\",\r\n \"endTime\": \"2016-05-18T01:16:02.6000354Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7919b995-911b-492c-9159-1c284d48af01\",\r\n \"name\": \"7919b995-911b-492c-9159-1c284d48af01\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:10:16.7734343Z\",\r\n \"endTime\": \"2017-03-09T08:10:17.4146461Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:17 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "ac41461f-efd1-44ce-9350-ac16c3565e00" + "52ff5a3c-ca65-4337-8c74-a14e5fead560" ], "x-ms-request-id": [ - "fbd89338-28d1-4d8c-b7f6-531f7ada86d9" + "dd0f99bf-a798-4af7-ba4c-cd4299a6ccb3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "14975" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011603Z:ac41461f-efd1-44ce-9350-ac16c3565e00" + "WESTCENTRALUS:20170309T081017Z:52ff5a3c-ca65-4337-8c74-a14e5fead560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:03 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIwNDc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnNDIxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e088cb8-f4ef-40a4-a9fa-3a5f6d8d4fe3" + "4659c8cf-2172-4595-8149-6912dae0c1c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -2088,161 +2159,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:17 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/8d1d349b-2db6-41e8-9ba6-2ba3ca32520a?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/8d1d349b-2db6-41e8-9ba6-2ba3ca32520a?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "117" + ], "x-ms-correlation-request-id": [ - "04e7b2ea-07a6-48f4-85a7-e5925f99815d" + "104b036f-e821-41db-9a7e-fbca9974edeb" ], "x-ms-request-id": [ - "ed39913f-588b-49a2-a463-d4f3bd787ae7" + "f6f173a7-0572-4986-af34-1006743ef107" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1186" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011604Z:04e7b2ea-07a6-48f4-85a7-e5925f99815d" + "WESTCENTRALUS:20170309T081017Z:104b036f-e821-41db-9a7e-fbca9974edeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/da81c8be-4ba4-43e1-870f-1296b5bb7b2b?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2RhODFjOGJlLTRiYTQtNDNlMS04NzBmLTEyOTZiNWJiN2IyYj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/8d1d349b-2db6-41e8-9ba6-2ba3ca32520a?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOGQxZDM0OWItMmRiNi00MWU4LTliYTYtMmJhM2NhMzI1MjBhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b\",\r\n \"name\": \"da81c8be-4ba4-43e1-870f-1296b5bb7b2b\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:16:07.3312829Z\",\r\n \"percentComplete\": 0.6\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/8d1d349b-2db6-41e8-9ba6-2ba3ca32520a\",\r\n \"name\": \"8d1d349b-2db6-41e8-9ba6-2ba3ca32520a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:10:17.1657781Z\",\r\n \"endTime\": \"2017-03-09T08:10:17.7777798Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "337" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "f487fb6d-b6da-4bed-9723-38b355b41782" - ], - "x-ms-request-id": [ - "c2300bd8-c29c-450f-8fa6-28a5bd5b038d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011609Z:f487fb6d-b6da-4bed-9723-38b355b41782" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:10:22 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:16:08 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2RhODFjOGJlLTRiYTQtNDNlMS04NzBmLTEyOTZiNWJiN2IyYj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b\",\r\n \"name\": \"da81c8be-4ba4-43e1-870f-1296b5bb7b2b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:16:07.3312829Z\",\r\n \"endTime\": \"2016-05-18T01:16:09.7823758Z\",\r\n \"percentComplete\": 1.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "380" - ], - "Content-Type": [ - "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Vary": [ + "Accept-Encoding" ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "8" ], "x-ms-correlation-request-id": [ - "77a0681f-71e3-4e3c-a424-431ee0d40dd7" + "8398a7a6-cc73-4ad6-9b63-4500da88ec9f" ], "x-ms-request-id": [ - "cb2ee66b-1c99-47e6-b242-99a9af565f78" + "7166861f-1076-4cd3-b0d9-af0f0abc5637" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14974" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011614Z:77a0681f-71e3-4e3c-a424-431ee0d40dd7" + "WESTCENTRALUS:20170309T081022Z:8398a7a6-cc73-4ad6-9b63-4500da88ec9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:14 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8762?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODc2Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg4212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnNDIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ae609fc-5ee6-4be5-aad9-c3ba10554a02" + "e311b8e8-018c-48a3-86d8-7ff7f7188333" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2253,47 +2284,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:22 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzQyMTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-request-id": [ - "8b8976a8-4d3c-4b6f-a192-5f96872c9d9c" + "7d292b9e-45dc-41a2-95fb-bfe18b998faf" ], "x-ms-correlation-request-id": [ - "8b8976a8-4d3c-4b6f-a192-5f96872c9d9c" + "7d292b9e-45dc-41a2-95fb-bfe18b998faf" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011615Z:8b8976a8-4d3c-4b6f-a192-5f96872c9d9c" + "WESTCENTRALUS:20170309T081022Z:7d292b9e-45dc-41a2-95fb-bfe18b998faf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzNOakl0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzQyMTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6UXlNVEl0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2304,47 +2336,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:52 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzQyMTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14995" ], "x-ms-request-id": [ - "cae2fa90-4a4b-4046-8c44-192058ecfdd9" + "bb52eb9a-bef8-4642-ac72-f4c3cd7bfcb1" ], "x-ms-correlation-request-id": [ - "cae2fa90-4a4b-4046-8c44-192058ecfdd9" + "bb52eb9a-bef8-4642-ac72-f4c3cd7bfcb1" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011645Z:cae2fa90-4a4b-4046-8c44-192058ecfdd9" + "WESTCENTRALUS:20170309T081052Z:bb52eb9a-bef8-4642-ac72-f4c3cd7bfcb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzNOakl0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzQyMTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6UXlNVEl0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2355,47 +2388,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:11:22 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14994" ], "x-ms-request-id": [ - "ffef396e-225a-480c-8c59-c75d4e0cfe19" + "d3ffcf5b-fb82-4266-a5df-c46e50d59947" ], "x-ms-correlation-request-id": [ - "ffef396e-225a-480c-8c59-c75d4e0cfe19" + "d3ffcf5b-fb82-4266-a5df-c46e50d59947" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011715Z:ffef396e-225a-480c-8c59-c75d4e0cfe19" + "WESTCENTRALUS:20170309T081122Z:d3ffcf5b-fb82-4266-a5df-c46e50d59947" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:17:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4366?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nLy9jb21taXRtZW50UGxhbnMvYW1sY3A0MzY2P2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.MachineLearning//commitmentPlans/amlcp6381?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNjM4MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "443171de-ce4a-4ec5-acce-15d89eb06315" + "f1090896-560f-4154-9228-de835cf5b12c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2406,50 +2440,51 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "230a8d73-f7e3-41d2-a876-18bf4c7b6c9c" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "Date": [ + "Thu, 09 Mar 2017 08:11:24 GMT" ], - "x-ms-correlation-request-id": [ - "9b1033ca-11d5-4dcb-884d-e4373986788a" + "Pragma": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011718Z:9b1033ca-11d5-4dcb-884d-e4373986788a" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "d98b1248-d384-4f1f-89fa-658ce3d0d864" ], - "Date": [ - "Wed, 18 May 2016 01:17:17 GMT" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "9e9c9929-4796-44ae-98e2-df960dd3c6ad" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081124Z:9e9c9929-4796-44ae-98e2-df960dd3c6ad" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2RlcGxhbWxjcDQzNjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A2MzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b57d555a-4ffa-4931-8ec5-67ea51524c92" + "f5ceb866-9387-454b-a386-9fb992c3d601" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2460,47 +2495,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:11:24 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczMDkzLURFUExBTUxDUDYzODEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1194" ], "x-ms-request-id": [ - "7afbf4d4-9969-46e6-b327-e5b97f860515" + "636c219c-206c-4aca-97da-a22d4c6a9541" ], "x-ms-correlation-request-id": [ - "7afbf4d4-9969-46e6-b327-e5b97f860515" + "636c219c-206c-4aca-97da-a22d4c6a9541" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011718Z:7afbf4d4-9969-46e6-b327-e5b97f860515" + "WESTCENTRALUS:20170309T081124Z:636c219c-206c-4aca-97da-a22d4c6a9541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:17:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTMtREVQTEFNTENQNDM2Ni0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTMtREVQTEFNTENQNDM2Ni0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pOVE10UkVWUVRFRk5URU5RTkRNMk5pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczMDkzLURFUExBTUxDUDYzODEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pNRGt6TFVSRlVFeEJUVXhEVURZek9ERXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2511,47 +2547,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:11:54 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczMDkzLURFUExBTUxDUDYzODEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14993" ], "x-ms-request-id": [ - "6d76a912-09ae-4d5c-b122-6afb2a6ae2fc" + "acd7feee-9d51-4e22-aff8-ff6634ba170b" ], "x-ms-correlation-request-id": [ - "6d76a912-09ae-4d5c-b122-6afb2a6ae2fc" + "acd7feee-9d51-4e22-aff8-ff6634ba170b" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011749Z:6d76a912-09ae-4d5c-b122-6afb2a6ae2fc" + "WESTCENTRALUS:20170309T081154Z:acd7feee-9d51-4e22-aff8-ff6634ba170b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:17:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTMtREVQTEFNTENQNDM2Ni0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTMtREVQTEFNTENQNDM2Ni0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pOVE10UkVWUVRFRk5URU5RTkRNMk5pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczMDkzLURFUExBTUxDUDYzODEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pNRGt6TFVSRlVFeEJUVXhEVURZek9ERXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2559,47 +2596,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:12:23 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14992" ], "x-ms-request-id": [ - "5b7cc863-540d-47bb-9284-7fe14d94c844" + "fed9a51e-8237-467d-9b87-2e352186dc31" ], "x-ms-correlation-request-id": [ - "5b7cc863-540d-47bb-9284-7fe14d94c844" + "fed9a51e-8237-467d-9b87-2e352186dc31" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011819Z:5b7cc863-540d-47bb-9284-7fe14d94c844" + "WESTCENTRALUS:20170309T081224Z:fed9a51e-8237-467d-9b87-2e352186dc31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:18:18 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Storage/storageAccounts/amlstor6957?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYW1sc3RvcjY5NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Storage/storageAccounts/amlstor7289?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Mjg5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b14d1bd-e60c-41c2-afb8-23af9a42dea7" + "95cddf22-b841-4d58-8e90-7301b7879dac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -2610,51 +2648,52 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "16bea48d-5858-4c1d-8f3e-d3e727b8d817" + "Date": [ + "Thu, 09 Mar 2017 08:12:25 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "b210a795-85f0-480e-ad1c-67a23675f532" + ], "x-ms-correlation-request-id": [ - "16bea48d-5858-4c1d-8f3e-d3e727b8d817" + "b210a795-85f0-480e-ad1c-67a23675f532" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160518T011821Z:16bea48d-5858-4c1d-8f3e-d3e727b8d817" + "WESTCENTRALUS:20170309T081225Z:b210a795-85f0-480e-ad1c-67a23675f532" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:18:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "804c61ac-7fb6-448a-923d-c599c8748e2c" + "b9cc4765-8067-4d6e-8b60-2e9dfc4df10d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2665,47 +2704,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:12:25 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzMwOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1193" ], "x-ms-request-id": [ - "94c4eaa4-c35d-42a7-8520-ef1cdeb10568" + "8e4f3e4d-9f71-4f41-885d-abd597bb43c6" ], "x-ms-correlation-request-id": [ - "94c4eaa4-c35d-42a7-8520-ef1cdeb10568" + "8e4f3e4d-9f71-4f41-885d-abd597bb43c6" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011821Z:94c4eaa4-c35d-42a7-8520-ef1cdeb10568" + "WESTCENTRALUS:20170309T081225Z:8e4f3e4d-9f71-4f41-885d-abd597bb43c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:18:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TTFNeTFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzMwOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TXdPVE10VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2716,47 +2756,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:12:55 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzMwOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14991" ], "x-ms-request-id": [ - "57a2ae40-f52f-48d2-b449-fea91b00f699" + "1719d7b6-14c3-4b3e-a374-22703b049fe8" ], "x-ms-correlation-request-id": [ - "57a2ae40-f52f-48d2-b449-fea91b00f699" + "1719d7b6-14c3-4b3e-a374-22703b049fe8" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011851Z:57a2ae40-f52f-48d2-b449-fea91b00f699" + "WESTCENTRALUS:20170309T081255Z:1719d7b6-14c3-4b3e-a374-22703b049fe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:18:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TTFNeTFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzMwOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TXdPVE10VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2767,29 +2808,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:13:25 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14990" ], "x-ms-request-id": [ - "014ecfc9-74ea-45a6-a00a-c82ed120a8fd" + "256aefc1-c5d2-44d5-bd7e-d7cfb3a00387" ], "x-ms-correlation-request-id": [ - "014ecfc9-74ea-45a6-a00a-c82ed120a8fd" + "256aefc1-c5d2-44d5-bd7e-d7cfb3a00387" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011921Z:014ecfc9-74ea-45a6-a00a-c82ed120a8fd" + "WESTCENTRALUS:20170309T081325Z:256aefc1-c5d2-44d5-bd7e-d7cfb3a00387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:19:21 GMT" ] }, "StatusCode": 200 @@ -2797,19 +2838,19 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws2371", - "amlrg353", - "amlcp4366", - "amlstor6957" + "amlws4297", + "amlrg3093", + "amlcp6381", + "amlstor7289" ], "CreateAndListWebServices": [ - "amlws6378", - "amlws5823", - "amlrg8762", - "amlws2047" + "amlws163", + "amlws7591", + "amlrg4212", + "amlws1943" ] }, "Variables": { - "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" } } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndPostOnGraphWebService.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndPostOnGraphWebService.json new file mode 100644 index 000000000000..fddbdcc22678 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndPostOnGraphWebService.json @@ -0,0 +1,1640 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ], + "x-ms-client-request-id": [ + "d369856b-33b3-40b1-9611-eec7671f87ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794\",\r\n \"name\": \"amlrg8794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:17:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "a3ab5180-41a7-4586-93e0-5722b9e46309" + ], + "x-ms-correlation-request-id": [ + "a3ab5180-41a7-4586-93e0-5722b9e46309" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191758Z:a3ab5180-41a7-4586-93e0-5722b9e46309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Storage/storageAccounts/amlstor8001?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I4MDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "97" + ], + "x-ms-client-request-id": [ + "fadf18b8-c1c1-4992-98a2-2e8a1ccc770f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/977c2781-9a41-4776-bbe9-74cd037a7ada?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "1f4a4984-2d1d-480f-a236-359f72ba1b0e" + ], + "x-ms-correlation-request-id": [ + "1f4a4984-2d1d-480f-a236-359f72ba1b0e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191801Z:1f4a4984-2d1d-480f-a236-359f72ba1b0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/977c2781-9a41-4776-bbe9-74cd037a7ada?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3N2MyNzgxLTlhNDEtNDc3Ni1iYmU5LTc0Y2QwMzdhN2FkYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bfa5f702-a257-4378-8dec-5b82ce4075e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "bfa5f702-a257-4378-8dec-5b82ce4075e1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191832Z:bfa5f702-a257-4378-8dec-5b82ce4075e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Storage/storageAccounts/amlstor8001/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I4MDAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f445a62-4b0b-48f9-a425-3d218d74406f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"WEB_SERVICE_KEY_SAMPLE1\",\r\n \"key2\": \"WEB_SERVICE_KEY_SAMPLE2\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "aa51fcf8-2dc1-4b93-b56b-d99647275292" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "aa51fcf8-2dc1-4b93-b56b-d99647275292" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191832Z:aa51fcf8-2dc1-4b93-b56b-d99647275292" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f51f603-1754-4c27-a61a-6739c6ae5ac3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/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 \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\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 \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "d286e379-0d4f-41e7-ae02-e764342c013d" + ], + "x-ms-correlation-request-id": [ + "d286e379-0d4f-41e7-ae02-e764342c013d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191832Z:d286e379-0d4f-41e7-ae02-e764342c013d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5NzMyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "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\": \"amlcp9732\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\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": [ + "1258" + ], + "x-ms-client-request-id": [ + "f73d0a2f-7b96-4a2c-93df-87ffb915f75b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732\",\r\n \"name\": \"deplamlcp9732\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp9732\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T19:18:33.4317037Z\",\r\n \"duration\": \"PT0.0864308S\",\r\n \"correlationId\": \"cb6937bd-cfec-460e-85ee-382954067385\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "769" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732/operationStatuses/08587125197721323360?api-version=2015-11-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "cb6937bd-cfec-460e-85ee-382954067385" + ], + "x-ms-correlation-request-id": [ + "cb6937bd-cfec-460e-85ee-382954067385" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191833Z:cb6937bd-cfec-460e-85ee-382954067385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732/operationStatuses/08587125197721323360?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5NzMyL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1MTk3NzIxMzIzMzYwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "c3559885-de7b-42d6-943c-45ee49cdd602" + ], + "x-ms-correlation-request-id": [ + "c3559885-de7b-42d6-943c-45ee49cdd602" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191903Z:c3559885-de7b-42d6-943c-45ee49cdd602" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5NzMyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732\",\r\n \"name\": \"deplamlcp9732\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp9732\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T19:18:40.5528834Z\",\r\n \"duration\": \"PT7.2076105S\",\r\n \"correlationId\": \"cb6937bd-cfec-460e-85ee-382954067385\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp9732\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "076d21fe-785f-47af-a15f-91fab4e05ac1" + ], + "x-ms-correlation-request-id": [ + "076d21fe-785f-47af-a15f-91fab4e05ac1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191903Z:076d21fe-785f-47af-a15f-91fab4e05ac1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.MachineLearning//commitmentPlans/amlcp9732?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwOTczMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "577a9bb2-ac32-495b-b924-d91b9dd7560b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"etag\": \"0000111c-0000-0000-0000-58c1aa920000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/commitmentPlans/amlcp9732\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp9732\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T19:18:38.1542709Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ac32f80f-6580-4a4c-8bf7-013be884f7a2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "3c9964be-4b1f-4f6b-bc65-15a2317292ee" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191909Z:3c9964be-4b1f-4f6b-bc65-15a2317292ee" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"PREDEFINED_PRIMARY_KEY\",\r\n \"secondary\": \"PREDEFINED_SECONDARY_KEY\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor8001\",\r\n \"key\": \"WEB_SERVICE_KEY_SAMPLE1\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/commitmentPlans/amlcp9732\"\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "15025" + ], + "x-ms-client-request-id": [ + "d2ab3df8-28b7-4e7b-845f-49c4a906dcf5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749\",\r\n \"name\": \"amlws1749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "378" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "498" + ], + "x-ms-correlation-request-id": [ + "67149cfe-b612-4fd9-bb20-2774f51fb65d" + ], + "x-ms-request-id": [ + "a7811f79-11a1-4cb7-ac95-2f75b0f5023c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191913Z:67149cfe-b612-4fd9-bb20-2774f51fb65d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDFmNTQyMmMtOTk5OS00YTAyLWIwNDUtMzFiNWJkZTVjM2Y1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5\",\r\n \"name\": \"41f5422c-9999-4a02-b045-31b5bde5c3f5\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T19:19:17.1377955Z\",\r\n \"percentComplete\": 0.4\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "114" + ], + "x-ms-correlation-request-id": [ + "da4d70e7-6456-4e3b-898a-969aebc389e8" + ], + "x-ms-request-id": [ + "8604b203-920b-4fb2-bd5e-be51c6dd8996" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191918Z:da4d70e7-6456-4e3b-898a-969aebc389e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDFmNTQyMmMtOTk5OS00YTAyLWIwNDUtMzFiNWJkZTVjM2Y1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5\",\r\n \"name\": \"41f5422c-9999-4a02-b045-31b5bde5c3f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T19:19:17.1377955Z\",\r\n \"endTime\": \"2017-03-09T19:19:24.0474233Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], + "x-ms-correlation-request-id": [ + "7bc2585a-8321-4f89-8cea-8af18bc0630b" + ], + "x-ms-request-id": [ + "b307809a-b3ce-41b5-a291-e0d3ed760b1b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191923Z:7bc2585a-8321-4f89-8cea-8af18bc0630b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749\",\r\n \"name\": \"amlws1749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T19:19:13.8261911Z\",\r\n \"modifiedOn\": \"2017-03-09T19:19:24.1034646Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4abba1d5c5942648cf395067998cf3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor8001\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_03\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT1\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "18" + ], + "x-ms-correlation-request-id": [ + "565e98be-c764-40b8-adf1-05b11390e066" + ], + "x-ms-request-id": [ + "02371110-a8f9-48c3-a99f-840a2162f27e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191923Z:565e98be-c764-40b8-adf1-05b11390e066" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?region=southcentralus&api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/cmVnaW9uPXNvdXRoY2VudHJhbHVzJmFwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a36f44b2-a2bf-433b-aeb9-b80188d4b381" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.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\": \"PerRegionPayloadNotFound\",\r\n \"message\": \"Web Service Definition for region southcentralus was not found. Please use the same URL making a POST call and wait for it succeeded, then try GET again.\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "369" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-duration": [ + "20" + ], + "x-ms-correlation-request-id": [ + "07ad9f25-9e68-4d4b-8d00-f4328bfecddc" + ], + "x-ms-request-id": [ + "a550c36e-f722-413d-8b4f-5f8190388306" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191924Z:07ad9f25-9e68-4d4b-8d00-f4328bfecddc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?region=southcentralus&api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/cmVnaW9uPXNvdXRoY2VudHJhbHVzJmFwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58e81a97-ae9d-4454-9a82-a3a8f6a1677d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749\",\r\n \"name\": \"amlws1749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T19:19:13.8261911Z\",\r\n \"modifiedOn\": \"2017-03-09T19:22:06.3239842Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4abba1d5c5942648cf395067998cf3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor8001\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_08\",\r\n \"certificateThumbprint\": \"ONE_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "71" + ], + "x-ms-correlation-request-id": [ + "bdcb7c67-02b7-405d-af85-53ba14e34cf7" + ], + "x-ms-request-id": [ + "76b87e1d-4d3d-4db0-945b-23ef6e31c2c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192208Z:bdcb7c67-02b7-405d-af85-53ba14e34cf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749/CreateRegionalBlob?region=southcentralus&api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDkvQ3JlYXRlUmVnaW9uYWxCbG9iP3JlZ2lvbj1zb3V0aGNlbnRyYWx1cyZhcGktdmVyc2lvbj0yMDE3LTAxLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70103e13-306a-4f46-8efc-e9ee9a25a85b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"amlws1749\",\r\n \"name\": \"amlws1749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "238" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/c707b31e-5ceb-402a-ac06-a35111301a56?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "181" + ], + "x-ms-correlation-request-id": [ + "33ea132b-3949-4e6d-8d39-e62ccd259485" + ], + "x-ms-request-id": [ + "a4801b25-ffa3-46f4-aa55-ea0e55b001f6" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192203Z:33ea132b-3949-4e6d-8d39-e62ccd259485" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/c707b31e-5ceb-402a-ac06-a35111301a56?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzcwN2IzMWUtNWNlYi00MDJhLWFjMDYtYTM1MTExMzAxYTU2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/c707b31e-5ceb-402a-ac06-a35111301a56\",\r\n \"name\": \"c707b31e-5ceb-402a-ac06-a35111301a56\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T19:22:05.9099971Z\",\r\n \"endTime\": \"2017-03-09T19:22:06.2727586Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "45" + ], + "x-ms-correlation-request-id": [ + "38948d0b-cea5-4d10-a521-a7d18b6ae1c8" + ], + "x-ms-request-id": [ + "c340be15-95aa-4d49-8c24-62dd7df1b7ea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192208Z:38948d0b-cea5-4d10-a521-a7d18b6ae1c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0163542e-f356-417f-aa11-3e3b4641fb31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "110" + ], + "x-ms-correlation-request-id": [ + "2371ec62-1281-41fd-aa17-9e2244f06208" + ], + "x-ms-request-id": [ + "8a7704b8-b29e-42a9-8b16-92c9175e9881" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192210Z:2371ec62-1281-41fd-aa17-9e2244f06208" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODRhMWU1ZDUtOWJmNy00OGE0LTkzYTEtNzJhZjBmMzhhNjNkP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d\",\r\n \"name\": \"84a1e5d5-9bf7-48a4-93a1-72af0f38a63d\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T19:22:15.6853912Z\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "14" + ], + "x-ms-correlation-request-id": [ + "e5c1b3db-0190-49e3-85da-54495499da1e" + ], + "x-ms-request-id": [ + "d024deaf-2ffc-4ae0-8d53-40e27ceacfef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192215Z:e5c1b3db-0190-49e3-85da-54495499da1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODRhMWU1ZDUtOWJmNy00OGE0LTkzYTEtNzJhZjBmMzhhNjNkP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d\",\r\n \"name\": \"84a1e5d5-9bf7-48a4-93a1-72af0f38a63d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T19:22:15.6853912Z\",\r\n \"endTime\": \"2017-03-09T19:22:16.3728907Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], + "x-ms-correlation-request-id": [ + "1ef92f70-d040-48b4-92bc-094f878e8af8" + ], + "x-ms-request-id": [ + "097a1446-c7fb-4aa0-bcc7-01e51e6ed9dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192220Z:1ef92f70-d040-48b4-92bc-094f878e8af8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.MachineLearning//commitmentPlans/amlcp9732?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwOTczMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "210b46c9-fed9-456d-9811-b63ce2c55914" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1cc2d2b7-3a00-4480-8658-4308281c0a49" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "9acd1615-8542-476b-87b8-769f7ad67585" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192221Z:9acd1615-8542-476b-87b8-769f7ad67585" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5NzMyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fa3f877-c079-4bbe-a65c-f2ecea3fb57b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4Nzk0LURFUExBTUxDUDk3MzItIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "9c4dfb3e-99c1-447a-9ff3-20d037e50c1c" + ], + "x-ms-correlation-request-id": [ + "9c4dfb3e-99c1-447a-9ff3-20d037e50c1c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192221Z:9c4dfb3e-99c1-447a-9ff3-20d037e50c1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4Nzk0LURFUExBTUxDUDk3MzItIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzROemswTFVSRlVFeEJUVXhEVURrM016SXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4Nzk0LURFUExBTUxDUDk3MzItIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "7a3349f9-e6db-4c68-899a-886e8341c5d2" + ], + "x-ms-correlation-request-id": [ + "7a3349f9-e6db-4c68-899a-886e8341c5d2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192251Z:7a3349f9-e6db-4c68-899a-886e8341c5d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4Nzk0LURFUExBTUxDUDk3MzItIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzROemswTFVSRlVFeEJUVXhEVURrM016SXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:23:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "25117941-6c92-4c92-9dd5-096db1d62881" + ], + "x-ms-correlation-request-id": [ + "25117941-6c92-4c92-9dd5-096db1d62881" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192321Z:25117941-6c92-4c92-9dd5-096db1d62881" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Storage/storageAccounts/amlstor8001?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I4MDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff3bda84-9e16-4191-be41-8e8b9f6adebe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:23:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a49ae87c-7add-427f-957a-6e394ea372a9" + ], + "x-ms-correlation-request-id": [ + "a49ae87c-7add-427f-957a-6e394ea372a9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192322Z:a49ae87c-7add-427f-957a-6e394ea372a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "992a0664-e0ec-4c75-8eea-2ac5b2998e0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:23:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3OTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "b52e7c95-2458-483a-8d10-a709aeddeb3b" + ], + "x-ms-correlation-request-id": [ + "b52e7c95-2458-483a-8d10-a709aeddeb3b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192322Z:b52e7c95-2458-483a-8d10-a709aeddeb3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3OTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzNPVFF0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:23:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3OTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "c9810d4d-4f22-4ab9-885c-d33579cfb294" + ], + "x-ms-correlation-request-id": [ + "c9810d4d-4f22-4ab9-885c-d33579cfb294" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192352Z:c9810d4d-4f22-4ab9-885c-d33579cfb294" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3OTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzNPVFF0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:24:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "1d735bb3-2412-471a-b6d6-563af02167f6" + ], + "x-ms-correlation-request-id": [ + "1d735bb3-2412-471a-b6d6-563af02167f6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192423Z:1d735bb3-2412-471a-b6d6-563af02167f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunAMLWebServiceTestScenario": [ + "amlws1749", + "amlrg8794", + "amlcp9732", + "amlstor8001" + ] + }, + "Variables": { + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" + } +} \ 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 abcec262ac27..7462d047da1d 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,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "1cf39a1a-3201-4aaf-8c7a-051a1e0c5f1b" + "12694c4a-20ad-4f11-ba90-fc9448c42d93" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113\",\r\n \"name\": \"amlrg5113\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262\",\r\n \"name\": \"amlrg9262\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,53 +34,54 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:16:57 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-request-id": [ - "c5651fbd-1971-4a67-9809-4a5c3577a3b1" + "55a523e3-4c59-4c9b-a7d7-5d33dace6216" ], "x-ms-correlation-request-id": [ - "c5651fbd-1971-4a67-9809-4a5c3577a3b1" + "55a523e3-4c59-4c9b-a7d7-5d33dace6216" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010910Z:c5651fbd-1971-4a67-9809-4a5c3577a3b1" + "WESTCENTRALUS:20170309T081657Z:55a523e3-4c59-4c9b-a7d7-5d33dace6216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:09:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Storage/storageAccounts/amlstor2599?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyNTk5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Storage/storageAccounts/amlstor4957?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I0OTU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "97" ], "x-ms-client-request-id": [ - "0ab4b466-3ea8-4e77-986d-2a20a7055f25" + "2f007c17-76a1-4b50-9bd8-ebcf0ade11bf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -90,233 +92,243 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "25" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "c030f810-5cbf-4ede-aa6e-6afe7dbe9455" + "Date": [ + "Thu, 09 Mar 2017 08:17:00 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/d1e6db2b-7a36-4a24-9cc7-29eb28f9405e?monitor=true&api-version=2015-06-15" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/21d999cd-f76a-4d5c-b11f-a9b938e90127?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "6424b4ee-f042-4e67-b1b3-9da6aec46c71" + ], "x-ms-correlation-request-id": [ - "c030f810-5cbf-4ede-aa6e-6afe7dbe9455" + "6424b4ee-f042-4e67-b1b3-9da6aec46c71" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010917Z:c030f810-5cbf-4ede-aa6e-6afe7dbe9455" + "WESTCENTRALUS:20170309T081700Z:6424b4ee-f042-4e67-b1b3-9da6aec46c71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:09:17 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/d1e6db2b-7a36-4a24-9cc7-29eb28f9405e?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2QxZTZkYjJiLTdhMzYtNGEyNC05Y2M3LTI5ZWIyOGY5NDA1ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/21d999cd-f76a-4d5c-b11f-a9b938e90127?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzIxZDk5OWNkLWY3NmEtNGQ1Yy1iMTFmLWE5YjkzOGU5MDEyNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "75" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "d2055d4c-0606-4017-bc8c-b0237e77c7fa" + "Date": [ + "Thu, 09 Mar 2017 08:17:29 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "96633736-0bf5-48bd-8983-dad9b46dbaf6" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14999" ], "x-ms-correlation-request-id": [ - "d2055d4c-0606-4017-bc8c-b0237e77c7fa" + "96633736-0bf5-48bd-8983-dad9b46dbaf6" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010947Z:d2055d4c-0606-4017-bc8c-b0237e77c7fa" + "WESTCENTRALUS:20170309T081730Z:96633736-0bf5-48bd-8983-dad9b46dbaf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:09:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Storage/storageAccounts/amlstor2599/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyNTk5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Storage/storageAccounts/amlstor4957/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I0OTU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06c3c16f-52d7-4f6e-a9e6-81259e101d77" + "f2616767-d230-46e6-a0bc-06d05dbb912c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"key1\": \"HABTB/Hi6yGi3Rn6oclzC2KPXS5SVLokIrBpVrSK90PfW6rndB5zGThfO7+T4b+CLkeuM7K0T6fhkOEfxOgjtw==\",\r\n \"key2\": \"Q/Z7KU5wwIwrQyFPkFHWvSOiqj3e/PZT3yxEUXLKyRjsHBo9YRmMZBbdbJMftvpcU4Wu4RnvCWMXqNP8txEHtA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"WEB_SERVICE_KEY_SAMPLE5\",\r\n \"key2\": \"WEB_SERVICE_KEY_SAMPLE6\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "198" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "a7c7c5ee-36a1-43dd-a95a-b2d94fde2be7" + "Date": [ + "Thu, 09 Mar 2017 08:17:30 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "46d93a03-70fd-4778-8ebf-51a88ad69c18" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "a7c7c5ee-36a1-43dd-a95a-b2d94fde2be7" + "46d93a03-70fd-4778-8ebf-51a88ad69c18" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010947Z:a7c7c5ee-36a1-43dd-a95a-b2d94fde2be7" + "WESTCENTRALUS:20170309T081730Z:46d93a03-70fd-4778-8ebf-51a88ad69c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:09:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08d0c767-1476-4771-9938-9bf28f3ba413" + "d67bc465-91ba-45b9-9815-7ce42af74bc2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/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 \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\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 \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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": [ - "1186" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:17:30 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14989" ], "x-ms-request-id": [ - "c386046e-a9a9-48c5-ae7b-543e83ae0ad6" + "b9401302-ce50-4d87-943f-459ad010c40e" ], "x-ms-correlation-request-id": [ - "c386046e-a9a9-48c5-ae7b-543e83ae0ad6" + "b9401302-ce50-4d87-943f-459ad010c40e" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010947Z:c386046e-a9a9-48c5-ae7b-543e83ae0ad6" + "WESTCENTRALUS:20170309T081730Z:b9401302-ce50-4d87-943f-459ad010c40e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:09:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3NTQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3OTY0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "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\": \"amlcp7543\"\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}", + "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\": \"amlcp7964\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\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": [ - "1274" + "1258" ], "x-ms-client-request-id": [ - "27325c49-b001-4507-9db4-21fef16363f7" + "3635eb39-97f7-4b0b-a868-4e7fdd1c3c7f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543\",\r\n \"name\": \"deplamlcp7543\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7543\"\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-18T01:09:48.8231591Z\",\r\n \"duration\": \"PT0.4409819S\",\r\n \"correlationId\": \"438d78ed-b089-421b-88e4-25f4039dd67e\",\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/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964\",\r\n \"name\": \"deplamlcp7964\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7964\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T08:17:31.4918581Z\",\r\n \"duration\": \"PT0.0909596S\",\r\n \"correlationId\": \"f182ff74-4ce0-4cf7-97c5-7cdd835d6e43\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "749" + "769" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,215 +336,222 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:17:31 GMT" + ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543/operationStatuses/08587380730970954894?api-version=2015-11-01" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964/operationStatuses/08587125594340767056?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-request-id": [ - "438d78ed-b089-421b-88e4-25f4039dd67e" + "f182ff74-4ce0-4cf7-97c5-7cdd835d6e43" ], "x-ms-correlation-request-id": [ - "438d78ed-b089-421b-88e4-25f4039dd67e" + "f182ff74-4ce0-4cf7-97c5-7cdd835d6e43" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010948Z:438d78ed-b089-421b-88e4-25f4039dd67e" + "WESTCENTRALUS:20170309T081731Z:f182ff74-4ce0-4cf7-97c5-7cdd835d6e43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:09:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543/operationStatuses/08587380730970954894?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3NTQzL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MzgwNzMwOTcwOTU0ODk0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964/operationStatuses/08587125594340767056?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3OTY0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1NTk0MzQwNzY3MDU2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:01 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14988" ], "x-ms-request-id": [ - "b7631b2c-ec40-492f-9011-9fa0fbe6d8af" + "2333d241-6bca-41e6-868b-f5c0d94309d9" ], "x-ms-correlation-request-id": [ - "b7631b2c-ec40-492f-9011-9fa0fbe6d8af" + "2333d241-6bca-41e6-868b-f5c0d94309d9" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011019Z:b7631b2c-ec40-492f-9011-9fa0fbe6d8af" + "WESTCENTRALUS:20170309T081801Z:2333d241-6bca-41e6-868b-f5c0d94309d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3NTQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3OTY0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543\",\r\n \"name\": \"deplamlcp7543\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7543\"\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-18T01:09:57.3332231Z\",\r\n \"duration\": \"PT8.9510459S\",\r\n \"correlationId\": \"438d78ed-b089-421b-88e4-25f4039dd67e\",\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/amlcp7543\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964\",\r\n \"name\": \"deplamlcp7964\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7964\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T08:17:34.4307538Z\",\r\n \"duration\": \"PT3.0298553S\",\r\n \"correlationId\": \"f182ff74-4ce0-4cf7-97c5-7cdd835d6e43\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp7964\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "831" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:01 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "14987" ], "x-ms-request-id": [ - "eaffd360-b44b-441c-9eb3-03e87c5cf74f" + "871fa54e-33a2-4e94-b75c-c410013b6f51" ], "x-ms-correlation-request-id": [ - "eaffd360-b44b-441c-9eb3-03e87c5cf74f" + "871fa54e-33a2-4e94-b75c-c410013b6f51" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011019Z:eaffd360-b44b-441c-9eb3-03e87c5cf74f" + "WESTCENTRALUS:20170309T081801Z:871fa54e-33a2-4e94-b75c-c410013b6f51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7543?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzU0Mz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7964?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzk2ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88236fe6-3b88-4b37-a789-8ef96497d118" + "333a300a-4b50-4a97-a583-6abd8dc40673" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"etag\": \"00000301-0000-0000-0000-573bc0e10000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7543\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp7543\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-18T01:09:54.1482768Z\",\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 \"maxAssociationLimit\": 10000\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\": \"0000c003-0000-0000-0000-58c10f9d0000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7964\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp7964\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T08:17:33.0955601Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1020" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "6df86082-7f50-4b09-919b-3c3eb63cd47e" + "Date": [ + "Thu, 09 Mar 2017 08:18:01 GMT" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "Pragma": [ + "no-cache" ], - "x-ms-correlation-request-id": [ - "84cfb23c-f88c-49e8-8803-032b2c5da92c" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011020Z:84cfb23c-f88c-49e8-8803-032b2c5da92c" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "4792dd21-04bc-4a69-bed3-d4347e003e31" ], - "Date": [ - "Wed, 18 May 2016 01:10:20 GMT" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "fc2a20f6-c388-4184-81c1-3c31e4356859" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081802Z:fc2a20f6-c388-4184-81c1-3c31e4356859" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "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 \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\",\r\n \"key\": \"HABTB/Hi6yGi3Rn6oclzC2KPXS5SVLokIrBpVrSK90PfW6rndB5zGThfO7+T4b+CLkeuM7K0T6fhkOEfxOgjtw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7543\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor4957\",\r\n \"key\": \"WEB_SERVICE_KEY_SAMPLE5\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7964\"\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5902" + "15025" ], "x-ms-client-request-id": [ - "73e380d6-30c9-433f-b968-c76173f47921" + "97894ce0-8925-458c-9a3c-373d6b4860fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375\",\r\n \"name\": \"amlws2375\",\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\": \"amlstor2599\",\r\n \"key\": \"HABTB/Hi6yGi3Rn6oclzC2KPXS5SVLokIrBpVrSK90PfW6rndB5zGThfO7+T4b+CLkeuM7K0T6fhkOEfxOgjtw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7543\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727\",\r\n \"name\": \"amlws5727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6167" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,249 +559,280 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "358" + ], "x-ms-correlation-request-id": [ - "7cf58d3b-55ff-432f-8a18-574583d174da" + "9042848c-96c3-4118-af47-e23417b81177" ], "x-ms-request-id": [ - "f8d80a4e-6228-4795-bb07-100bc7c748cc" + "e6aae1f2-f906-4405-9346-a423979a591c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011026Z:7cf58d3b-55ff-432f-8a18-574583d174da" + "WESTCENTRALUS:20170309T081804Z:9042848c-96c3-4118-af47-e23417b81177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzk4Njg2ZDdhLTRkMTctNGQ4Yy05NDE1LTA5YmMxMWU5NjUyOD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzE4ODk5ZTQtNmNhNy00ZjQ3LTkyMmEtMjM4YjdmYjU1ZjQyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528\",\r\n \"name\": \"98686d7a-4d17-4d8c-9415-09bc11e96528\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:10:27.3419993Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42\",\r\n \"name\": \"718899e4-6ca7-4f47-922a-238b7fb55f42\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:18:06.2562398Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:08 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "118" + ], "x-ms-correlation-request-id": [ - "ec290833-a639-470b-87b0-98b47affc182" + "ad388f86-fb6f-473f-ab4b-cc2954bc65b4" ], "x-ms-request-id": [ - "2222b4a0-1129-4ac2-800a-b0f1fd420231" + "2c2995d4-c5a5-4154-8a14-785a64579fbc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" + "14979" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011032Z:ec290833-a639-470b-87b0-98b47affc182" + "WESTCENTRALUS:20170309T081809Z:ad388f86-fb6f-473f-ab4b-cc2954bc65b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:31 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzk4Njg2ZDdhLTRkMTctNGQ4Yy05NDE1LTA5YmMxMWU5NjUyOD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzE4ODk5ZTQtNmNhNy00ZjQ3LTkyMmEtMjM4YjdmYjU1ZjQyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528\",\r\n \"name\": \"98686d7a-4d17-4d8c-9415-09bc11e96528\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:10:27.3419993Z\",\r\n \"endTime\": \"2016-05-18T01:10:35.401118Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42\",\r\n \"name\": \"718899e4-6ca7-4f47-922a-238b7fb55f42\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:18:06.2562398Z\",\r\n \"endTime\": \"2017-03-09T08:18:11.9882792Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "379" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:14 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "d7f8ce91-1b2f-45b7-ae4b-2762b1ad2bc7" + "d97feea0-23e8-483d-a186-8e888a5f265c" ], "x-ms-request-id": [ - "2384a69f-3308-4c5f-8306-ee7aa0b64805" + "855c0784-502d-401a-a461-d465c61a504f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14978" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011037Z:d7f8ce91-1b2f-45b7-ae4b-2762b1ad2bc7" + "WESTCENTRALUS:20170309T081814Z:d97feea0-23e8-483d-a186-8e888a5f265c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:36 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375\",\r\n \"name\": \"amlws2375\",\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-18T01:10:26.0017247Z\",\r\n \"modifiedOn\": \"2016-05-18T01:10:35.4878116Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/1776e41b77b341c893ad3b219155dcad/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727\",\r\n \"name\": \"amlws5727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:18:04.3386647Z\",\r\n \"modifiedOn\": \"2017-03-09T08:18:12.034037Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8a3472a9f7c43a9b4fe3b1f76d00527/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor4957\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_09\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5916" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:14 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "19" + ], "x-ms-correlation-request-id": [ - "f7badd9c-14bf-4499-b3ae-c3ece6d46fd2" + "9b86d830-2341-401b-a063-402315651889" ], "x-ms-request-id": [ - "f587435c-ee29-4e39-bf22-5f2e3fa726d5" + "4f1eccf2-58b2-456c-8ba1-8aa1c32d3ca4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "14977" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011037Z:f7badd9c-14bf-4499-b3ae-c3ece6d46fd2" + "WESTCENTRALUS:20170309T081814Z:9b86d830-2341-401b-a063-402315651889" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:36 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375\",\r\n \"name\": \"amlws2375\",\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-18T01:10:26.0017247Z\",\r\n \"modifiedOn\": \"2016-05-18T01:10:52.8940233Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"description was updated!\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/1776e41b77b341c893ad3b219155dcad/swagger.json\",\r\n \"readOnly\": false,\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727\",\r\n \"name\": \"amlws5727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:18:04.3386647Z\",\r\n \"modifiedOn\": \"2017-03-09T08:18:22.7693368Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"description was updated!\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8a3472a9f7c43a9b4fe3b1f76d00527/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor4957\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_10\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5960" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:24 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "17" + ], "x-ms-correlation-request-id": [ - "d2f52166-7260-4e01-9257-96c413412e41" + "c3a226e1-15fb-4bf8-8f87-e02a40becbba" ], "x-ms-request-id": [ - "82afedc7-6cee-4c7c-918a-f2e9c7bfaa17" + "dcd09d21-7b56-40a7-85c1-0b4385b2623f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14974" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011054Z:d2f52166-7260-4e01-9257-96c413412e41" + "WESTCENTRALUS:20170309T081824Z:c3a226e1-15fb-4bf8-8f87-e02a40becbba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "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": { @@ -793,286 +843,264 @@ "232" ], "x-ms-client-request-id": [ - "e8d79434-7aaf-4389-9a15-22733b7d308e" + "65eee8f8-0a40-418d-936c-26178fff694f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375\",\r\n \"name\": \"amlws2375\",\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-18T01:10:26.0017247Z\",\r\n \"modifiedOn\": \"2016-05-18T01:10:37.8539234Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/1776e41b77b341c893ad3b219155dcad/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727\",\r\n \"name\": \"amlws5727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5919" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:14 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "217" + ], "x-ms-correlation-request-id": [ - "24ce5ee0-c913-42dd-8b02-82c79b2fdd96" + "4287b6d5-6045-438d-b856-f11198d9451a" ], "x-ms-request-id": [ - "7e0a26b4-c1d7-4911-84ae-351a7c24aef9" + "c54ebdf2-14cf-4531-b09c-d56fa1667993" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1188" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011038Z:24ce5ee0-c913-42dd-8b02-82c79b2fdd96" + "WESTCENTRALUS:20170309T081814Z:4287b6d5-6045-438d-b856-f11198d9451a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:37 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJhOGJkYmNhLThkMzgtNGQwMS04MzI5LWViZWNkNjEyYzIzNz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjM1MDFlODktMmIwYy00MDExLWIzMmMtMDc0NDQyMDAzZTcyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"name\": \"2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"status\": \"Provisioning\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72\",\r\n \"name\": \"b3501e89-2b0c-4011-b32c-074442003e72\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:18:16.2202466Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "289" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "1626c08e-958d-457c-a87e-8a979bf0c57f" - ], - "x-ms-request-id": [ - "ec563ccc-300b-4961-960d-7931cba8a352" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011043Z:1626c08e-958d-457c-a87e-8a979bf0c57f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:18:19 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:10:43 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJhOGJkYmNhLThkMzgtNGQwMS04MzI5LWViZWNkNjEyYzIzNz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"name\": \"2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:10:43.3424541Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "26" ], "x-ms-correlation-request-id": [ - "4c9b936c-63a9-4611-bba2-2b923d40f2de" + "0e9146e7-fb1a-43f6-b910-69f66720a148" ], "x-ms-request-id": [ - "01700bc6-a434-41c5-9717-120bcad71f72" + "f0a576de-65be-4069-8275-6e4e24f4900d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14976" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011048Z:4c9b936c-63a9-4611-bba2-2b923d40f2de" + "WESTCENTRALUS:20170309T081819Z:0e9146e7-fb1a-43f6-b910-69f66720a148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:48 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJhOGJkYmNhLThkMzgtNGQwMS04MzI5LWViZWNkNjEyYzIzNz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjM1MDFlODktMmIwYy00MDExLWIzMmMtMDc0NDQyMDAzZTcyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"name\": \"2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:10:43.3424541Z\",\r\n \"endTime\": \"2016-05-18T01:10:52.8129758Z\",\r\n \"percentComplete\": 0.88888888888888884\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72\",\r\n \"name\": \"b3501e89-2b0c-4011-b32c-074442003e72\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:18:16.2202466Z\",\r\n \"endTime\": \"2017-03-09T08:18:22.7232103Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "396" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:24 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], "x-ms-correlation-request-id": [ - "026481c2-f782-462e-89ad-07c76f6d5485" + "05ca9703-50e9-4d59-9d06-d1c171a9c24d" ], "x-ms-request-id": [ - "01f7f032-ee50-4e93-b5f6-8bad6cc1fb98" + "de4a6d36-65b7-4a7f-8aa3-f80dfc9600e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14975" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011053Z:026481c2-f782-462e-89ad-07c76f6d5485" + "WESTCENTRALUS:20170309T081824Z:05ca9703-50e9-4d59-9d06-d1c171a9c24d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375/listKeys?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727/listKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3MjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1843048f-29e9-4742-bfb3-080b118a7ff3" + "48c2506e-ae5d-462e-a150-56ccf49db240" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"primary\": \"f6ae3d003c63457ab4c5997effb5e4dc\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n}", + "ResponseBody": "{\r\n \"primary\": \"f6ae3d003c63457ab4c5997effb5e4dc\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "161" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:24 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], "x-ms-correlation-request-id": [ - "861d58c5-2f8b-433e-8fe2-1b2c67530085" + "ca95ed16-e3b1-4747-a9b1-cc4f5c61abb0" ], "x-ms-request-id": [ - "2d29af27-4141-426f-855a-f609aa672b48" + "9cc86611-5c77-4950-a3d0-c154404924e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14973" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011054Z:861d58c5-2f8b-433e-8fe2-1b2c67530085" + "WESTCENTRALUS:20170309T081824Z:ca95ed16-e3b1-4747-a9b1-cc4f5c61abb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b38cfca-79bf-4e17-b0f7-b2ce64970863" + "ef92557a-87c6-42db-8a8e-fb1c481f8d00" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -1083,161 +1111,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:24 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/fe067c51-a967-4a2e-976f-adbcfa0e0024?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fe067c51-a967-4a2e-976f-adbcfa0e0024?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "144" + ], "x-ms-correlation-request-id": [ - "295e8cbc-92ec-4285-9eff-dc3dcf380be3" + "7df93f75-32d3-425a-b898-7e4a07d4b548" ], "x-ms-request-id": [ - "d009206f-0282-454e-a081-e7d055f19a7e" + "a7d722e0-1a90-451c-bd05-39a07b5854fc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1187" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011055Z:295e8cbc-92ec-4285-9eff-dc3dcf380be3" + "WESTCENTRALUS:20170309T081825Z:7df93f75-32d3-425a-b898-7e4a07d4b548" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/cb16b4a8-0018-4107-a7f7-a329b925deb2?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2NiMTZiNGE4LTAwMTgtNDEwNy1hN2Y3LWEzMjliOTI1ZGViMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fe067c51-a967-4a2e-976f-adbcfa0e0024?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZmUwNjdjNTEtYTk2Ny00YTJlLTk3NmYtYWRiY2ZhMGUwMDI0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2\",\r\n \"name\": \"cb16b4a8-0018-4107-a7f7-a329b925deb2\",\r\n \"status\": \"Provisioning\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fe067c51-a967-4a2e-976f-adbcfa0e0024\",\r\n \"name\": \"fe067c51-a967-4a2e-976f-adbcfa0e0024\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:18:26.7485732Z\",\r\n \"endTime\": \"2017-03-09T08:18:27.5931488Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "289" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "219afc74-ab58-421c-b5ca-33f480b7aed7" - ], - "x-ms-request-id": [ - "e151cab5-a87c-4925-b961-e534a99acf2d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011100Z:219afc74-ab58-421c-b5ca-33f480b7aed7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:18:29 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:10:59 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2NiMTZiNGE4LTAwMTgtNDEwNy1hN2Y3LWEzMjliOTI1ZGViMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2\",\r\n \"name\": \"cb16b4a8-0018-4107-a7f7-a329b925deb2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:11:00.5087087Z\",\r\n \"endTime\": \"2016-05-18T01:11:02.0442336Z\",\r\n \"percentComplete\": 1.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "380" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "10" ], "x-ms-correlation-request-id": [ - "171299de-7b57-40dd-aa8d-73454ee093c8" + "568a7a08-dd18-4eea-b3c3-5781ac8f52d6" ], "x-ms-request-id": [ - "eb53568d-4340-4b69-9ec1-acad6d991305" + "22d8de33-eaaa-4641-ae15-641c82b0641d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14972" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011105Z:171299de-7b57-40dd-aa8d-73454ee093c8" + "WESTCENTRALUS:20170309T081830Z:568a7a08-dd18-4eea-b3c3-5781ac8f52d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:11:04 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7543?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzU0Mz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7964?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzk2ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30e625a-9c00-4fb9-a145-5032f6c39259" + "20ca7ef6-b78d-4482-b2cc-2fb5efc65b2a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1248,50 +1236,51 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "6ccca8e1-4882-4a18-aab7-5da157eb7baf" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Date": [ + "Thu, 09 Mar 2017 08:18:31 GMT" ], - "x-ms-correlation-request-id": [ - "ead890c4-dbf4-48c2-b5c2-166d3f282512" + "Pragma": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011106Z:ead890c4-dbf4-48c2-b5c2-166d3f282512" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "de49d31d-aade-47d2-b94d-f3cd0ea59e28" ], - "Date": [ - "Wed, 18 May 2016 01:11:06 GMT" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "e59e9f92-6c08-4fd9-a915-db5c9aa544e6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081831Z:e59e9f92-6c08-4fd9-a915-db5c9aa544e6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3NTQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3OTY0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc00bd-008e-450a-9484-bc6d618c5a26" + "26ec6f59-053a-41ba-b80e-e635b10a51fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1302,47 +1291,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:31 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc5MjYyLURFUExBTUxDUDc5NjQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-request-id": [ - "8355c228-a288-4627-b9f0-5982cd7186bb" + "d989aefc-8c19-433b-8e2f-3e6440829e22" ], "x-ms-correlation-request-id": [ - "8355c228-a288-4627-b9f0-5982cd7186bb" + "d989aefc-8c19-433b-8e2f-3e6440829e22" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011107Z:8355c228-a288-4627-b9f0-5982cd7186bb" + "WESTCENTRALUS:20170309T081831Z:d989aefc-8c19-433b-8e2f-3e6440829e22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:11:07 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MTEzLURFUExBTUxDUDc1NDMtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MTEzLURFUExBTUxDUDc1NDMtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzFNVEV6TFVSRlVFeEJUVXhEVURjMU5ETXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc5MjYyLURFUExBTUxDUDc5NjQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzVNall5TFVSRlVFeEJUVXhEVURjNU5qUXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1353,47 +1343,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:19:01 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc5MjYyLURFUExBTUxDUDc5NjQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14985" ], "x-ms-request-id": [ - "82532839-3e29-4109-b031-2c82136c61cb" + "8b027a1b-287b-4b6f-8f7d-718f877a5082" ], "x-ms-correlation-request-id": [ - "82532839-3e29-4109-b031-2c82136c61cb" + "8b027a1b-287b-4b6f-8f7d-718f877a5082" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011137Z:82532839-3e29-4109-b031-2c82136c61cb" + "WESTCENTRALUS:20170309T081901Z:8b027a1b-287b-4b6f-8f7d-718f877a5082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:11:36 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MTEzLURFUExBTUxDUDc1NDMtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MTEzLURFUExBTUxDUDc1NDMtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzFNVEV6TFVSRlVFeEJUVXhEVURjMU5ETXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc5MjYyLURFUExBTUxDUDc5NjQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzVNall5TFVSRlVFeEJUVXhEVURjNU5qUXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1401,47 +1392,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:19:31 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14984" ], "x-ms-request-id": [ - "11862f5f-dca9-46ca-83cb-377f9c7156b5" + "41f98c6a-208d-459e-9e7e-9d618095e8f5" ], "x-ms-correlation-request-id": [ - "11862f5f-dca9-46ca-83cb-377f9c7156b5" + "41f98c6a-208d-459e-9e7e-9d618095e8f5" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011207Z:11862f5f-dca9-46ca-83cb-377f9c7156b5" + "WESTCENTRALUS:20170309T081931Z:41f98c6a-208d-459e-9e7e-9d618095e8f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:12:07 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Storage/storageAccounts/amlstor2599?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyNTk5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Storage/storageAccounts/amlstor4957?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I0OTU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "979821a1-87b7-4142-a388-cc5f0733558a" + "1c3a4683-6c5e-4117-aaa6-476e0d5e884f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -1452,51 +1444,52 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "a9271d08-0976-470b-8ccf-9ec43eedc226" + "Date": [ + "Thu, 09 Mar 2017 08:19:32 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "22d37073-94de-4cc6-9864-1d1651e4d78e" + ], "x-ms-correlation-request-id": [ - "a9271d08-0976-470b-8ccf-9ec43eedc226" + "22d37073-94de-4cc6-9864-1d1651e4d78e" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011209Z:a9271d08-0976-470b-8ccf-9ec43eedc226" + "WESTCENTRALUS:20170309T081932Z:22d37073-94de-4cc6-9864-1d1651e4d78e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:12:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94779bc8-7289-48f4-880f-f7c060620fd7" + "d8e17097-a80f-4709-8c5b-ff3f68b607f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1507,47 +1500,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:19:32 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzkyNjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1188" ], "x-ms-request-id": [ - "4b3ed842-c4db-4fa4-8014-3c48b000912e" + "86256629-0bd2-4a98-8b89-46d89cb71cf6" ], "x-ms-correlation-request-id": [ - "4b3ed842-c4db-4fa4-8014-3c48b000912e" + "86256629-0bd2-4a98-8b89-46d89cb71cf6" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011209Z:4b3ed842-c4db-4fa4-8014-3c48b000912e" + "WESTCENTRALUS:20170309T081932Z:86256629-0bd2-4a98-8b89-46d89cb71cf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:12:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUxMTMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUxMTMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6VXhNVE10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzkyNjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6a3lOakl0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1558,47 +1552,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:20:02 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzkyNjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14983" ], "x-ms-request-id": [ - "b852a940-9a16-4280-afee-28336e0239f6" + "38e80307-0bdc-45d4-90c8-0a8311ffc47f" ], "x-ms-correlation-request-id": [ - "b852a940-9a16-4280-afee-28336e0239f6" + "38e80307-0bdc-45d4-90c8-0a8311ffc47f" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011239Z:b852a940-9a16-4280-afee-28336e0239f6" + "WESTCENTRALUS:20170309T082002Z:38e80307-0bdc-45d4-90c8-0a8311ffc47f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:12:39 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUxMTMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUxMTMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6VXhNVE10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzkyNjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6a3lOakl0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1609,29 +1604,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:20:32 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14982" ], "x-ms-request-id": [ - "62cc1eec-b5cb-478a-a6da-1a590479eede" + "e9190910-b93a-4d1a-a957-c9608f4f1d84" ], "x-ms-correlation-request-id": [ - "62cc1eec-b5cb-478a-a6da-1a590479eede" + "e9190910-b93a-4d1a-a957-c9608f4f1d84" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011310Z:62cc1eec-b5cb-478a-a6da-1a590479eede" + "WESTCENTRALUS:20170309T082032Z:e9190910-b93a-4d1a-a957-c9608f4f1d84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:13:09 GMT" ] }, "StatusCode": 200 @@ -1639,13 +1634,13 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws2375", - "amlrg5113", - "amlcp7543", - "amlstor2599" + "amlws5727", + "amlrg9262", + "amlcp7964", + "amlstor4957" ] }, "Variables": { - "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" } } \ 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 35707960a115..7e375c28daf4 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,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "f2022bb6-63f6-48b3-993b-9e98f4a65611" + "5cccc3e5-11b1-4767-8d51-dac4fc2bc049" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423\",\r\n \"name\": \"amlrg8423\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543\",\r\n \"name\": \"amlrg2543\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,6 +34,12 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:13:29 GMT" + ], "Pragma": [ "no-cache" ], @@ -40,46 +47,41 @@ "1199" ], "x-ms-request-id": [ - "9502dafa-9c03-4585-a303-e9e1e9fbdf82" + "c1c01eed-697e-465d-bafc-b8a93b73bccf" ], "x-ms-correlation-request-id": [ - "9502dafa-9c03-4585-a303-e9e1e9fbdf82" + "c1c01eed-697e-465d-bafc-b8a93b73bccf" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010439Z:9502dafa-9c03-4585-a303-e9e1e9fbdf82" + "WESTCENTRALUS:20170309T081329Z:c1c01eed-697e-465d-bafc-b8a93b73bccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:04:38 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Storage/storageAccounts/amlstor2208?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMjA4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Storage/storageAccounts/amlstor7775?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Nzc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "97" ], "x-ms-client-request-id": [ - "fc7c1e48-2ea3-4d86-9cb1-807fb2826466" + "b25fe229-85bb-4778-9790-03a7d97fb223" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -90,233 +92,243 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "25" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "d82c9cfc-4b91-442f-bb1b-73779ccb8874" + "Date": [ + "Thu, 09 Mar 2017 08:13:32 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/a938e937-5af6-4383-b9c7-db1c110c12c1?monitor=true&api-version=2015-06-15" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/db6caaa5-3054-4443-b619-6de3e7c62bd8?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "579c4fbc-8949-4f44-b816-c5a9bb6a9898" + ], "x-ms-correlation-request-id": [ - "d82c9cfc-4b91-442f-bb1b-73779ccb8874" + "579c4fbc-8949-4f44-b816-c5a9bb6a9898" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010448Z:d82c9cfc-4b91-442f-bb1b-73779ccb8874" + "WESTCENTRALUS:20170309T081332Z:579c4fbc-8949-4f44-b816-c5a9bb6a9898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:04:48 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/a938e937-5af6-4383-b9c7-db1c110c12c1?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E5MzhlOTM3LTVhZjYtNDM4My1iOWM3LWRiMWMxMTBjMTJjMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/db6caaa5-3054-4443-b619-6de3e7c62bd8?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2RiNmNhYWE1LTMwNTQtNDQ0My1iNjE5LTZkZTNlN2M2MmJkOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "75" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "4f56d13a-783d-4cff-91f6-7ad27381886f" + "Date": [ + "Thu, 09 Mar 2017 08:14:02 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1604e339-da8a-40b0-b48a-b69848d47e0b" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14999" ], "x-ms-correlation-request-id": [ - "4f56d13a-783d-4cff-91f6-7ad27381886f" + "1604e339-da8a-40b0-b48a-b69848d47e0b" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010518Z:4f56d13a-783d-4cff-91f6-7ad27381886f" + "WESTCENTRALUS:20170309T081403Z:1604e339-da8a-40b0-b48a-b69848d47e0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:05:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Storage/storageAccounts/amlstor2208/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMjA4L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Storage/storageAccounts/amlstor7775/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Nzc1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "590417c4-7e63-4094-989c-b1c5a68cad7a" + "a42ef7b3-c002-4cf8-90ad-b4f99c4185ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"key1\": \"I/kyaczBH73Rap3dIurn8yYDWKjqobL4nOqoDVsFMl3FMxPctrfJnV8rF8XEHOForFMRiY3qnRgoOZkKEGIe/Q==\",\r\n \"key2\": \"a6hvQMrmZlxuY/mka0xtGfvRsO4AGu3smRis+LeT+4bCEXy3W3wL4JaKHBb2iLXWGpu/yk0Mi7WFEOAmbL5Jsw==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"WEB_SERVICE_KEY_SAMPLE3\",\r\n \"key2\": \"WEB_SERVICE_KEY_SAMPLE4\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "198" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "d8c20519-eef6-43e8-9a70-2dc723a54952" + "Date": [ + "Thu, 09 Mar 2017 08:14:02 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e9a16683-af39-4447-96a0-23cca7d98d31" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "d8c20519-eef6-43e8-9a70-2dc723a54952" + "e9a16683-af39-4447-96a0-23cca7d98d31" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010519Z:d8c20519-eef6-43e8-9a70-2dc723a54952" + "WESTCENTRALUS:20170309T081403Z:e9a16683-af39-4447-96a0-23cca7d98d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:05:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2629d433-6386-4cae-bfe8-b30da3a1d58d" + "b48c6e34-9583-4bd4-93a7-84fc701a8f1a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/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 \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\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 \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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": [ - "1186" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:03 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "14999" ], "x-ms-request-id": [ - "b4dc824f-44e1-4c77-9e22-c62e5c18de3a" + "e0cf7d2c-109c-4559-917a-e4ad60bac38e" ], "x-ms-correlation-request-id": [ - "b4dc824f-44e1-4c77-9e22-c62e5c18de3a" + "e0cf7d2c-109c-4559-917a-e4ad60bac38e" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010519Z:b4dc824f-44e1-4c77-9e22-c62e5c18de3a" + "WESTCENTRALUS:20170309T081403Z:e0cf7d2c-109c-4559-917a-e4ad60bac38e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NDY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzMTMxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "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\": \"amlcp4465\"\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}", + "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\": \"amlcp3131\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\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": [ - "1274" + "1258" ], "x-ms-client-request-id": [ - "855108c0-8a9c-481e-a3e6-5cd1404cadf1" + "9ce2e86f-871f-4d50-b840-b0afbeb9036c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465\",\r\n \"name\": \"deplamlcp4465\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4465\"\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-18T01:05:20.2779609Z\",\r\n \"duration\": \"PT0.5624221S\",\r\n \"correlationId\": \"ab5862cd-2b2c-4c08-9343-54fe0577bb6f\",\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/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131\",\r\n \"name\": \"deplamlcp3131\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp3131\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T08:14:04.4826439Z\",\r\n \"duration\": \"PT0.1759356S\",\r\n \"correlationId\": \"f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "749" + "769" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,203 +336,210 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:03 GMT" + ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465/operationStatuses/08587380733657621209?api-version=2015-11-01" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131/operationStatuses/08587125596411708951?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "ab5862cd-2b2c-4c08-9343-54fe0577bb6f" + "f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31" ], "x-ms-correlation-request-id": [ - "ab5862cd-2b2c-4c08-9343-54fe0577bb6f" + "f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010520Z:ab5862cd-2b2c-4c08-9343-54fe0577bb6f" + "WESTCENTRALUS:20170309T081404Z:f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:20 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465/operationStatuses/08587380733657621209?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NDY1L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MzgwNzMzNjU3NjIxMjA5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131/operationStatuses/08587125596411708951?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzMTMxL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1NTk2NDExNzA4OTUxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:34 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14998" ], "x-ms-request-id": [ - "ece37e21-bc2b-4f39-bbe1-508d5ecf9a2c" + "8274a351-37f1-4c31-a154-b45f875585ce" ], "x-ms-correlation-request-id": [ - "ece37e21-bc2b-4f39-bbe1-508d5ecf9a2c" + "8274a351-37f1-4c31-a154-b45f875585ce" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010550Z:ece37e21-bc2b-4f39-bbe1-508d5ecf9a2c" + "WESTCENTRALUS:20170309T081434Z:8274a351-37f1-4c31-a154-b45f875585ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NDY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzMTMxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465\",\r\n \"name\": \"deplamlcp4465\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4465\"\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-18T01:05:24.4754848Z\",\r\n \"duration\": \"PT4.759946S\",\r\n \"correlationId\": \"ab5862cd-2b2c-4c08-9343-54fe0577bb6f\",\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/amlcp4465\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131\",\r\n \"name\": \"deplamlcp3131\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp3131\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T08:14:17.4464412Z\",\r\n \"duration\": \"PT13.1397329S\",\r\n \"correlationId\": \"f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp3131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "830" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:34 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14997" ], "x-ms-request-id": [ - "80345f44-5eff-4a87-a37d-b1831f275e8d" + "efcf49a7-2ba8-4ef9-b6ee-ffebe0c42e59" ], "x-ms-correlation-request-id": [ - "80345f44-5eff-4a87-a37d-b1831f275e8d" + "efcf49a7-2ba8-4ef9-b6ee-ffebe0c42e59" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010550Z:80345f44-5eff-4a87-a37d-b1831f275e8d" + "WESTCENTRALUS:20170309T081434Z:efcf49a7-2ba8-4ef9-b6ee-ffebe0c42e59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4465?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNDQ2NT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.MachineLearning//commitmentPlans/amlcp3131?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMzEzMT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44619217-cdef-47a3-aafe-7a74c069ebb4" + "7680745f-e947-472e-9dd7-85692d8e133c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"etag\": \"0000fd00-0000-0000-0000-573bbfd20000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4465\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp4465\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-18T01:05:22.0953498Z\",\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 \"maxAssociationLimit\": 10000\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\": \"0000b103-0000-0000-0000-58c10ed70000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/commitmentPlans/amlcp3131\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp3131\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T08:14:15.7405552Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1020" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "25e3d928-d3dc-486f-9bdd-f2c07a9cdb32" + "Date": [ + "Thu, 09 Mar 2017 08:14:34 GMT" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "Pragma": [ + "no-cache" ], - "x-ms-correlation-request-id": [ - "94cf13ee-71f2-4dd4-be25-7010ed35a6d3" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T010552Z:94cf13ee-71f2-4dd4-be25-7010ed35a6d3" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "57af8ebe-1c64-404e-9a3f-511cc91d3ba3" ], - "Date": [ - "Wed, 18 May 2016 01:05:51 GMT" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "c0332c67-a04a-410c-8ee4-645107ffb43b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081435Z:c0332c67-a04a-410c-8ee4-645107ffb43b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec43a13c-9827-4a40-9e9e-c1a32c57857b" + "ccb591c6-5b18-47e1-a721-f96a4b24160f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -528,47 +547,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:36 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "bc94f89c-d70e-48e5-a2b5-c2434cfa24e3" + "74563c74-0fcb-4c6d-bf74-003d586fa7e6" ], "x-ms-correlation-request-id": [ - "bc94f89c-d70e-48e5-a2b5-c2434cfa24e3" + "74563c74-0fcb-4c6d-bf74-003d586fa7e6" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010556Z:bc94f89c-d70e-48e5-a2b5-c2434cfa24e3" + "WESTCENTRALUS:20170309T081436Z:74563c74-0fcb-4c6d-bf74-003d586fa7e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:56 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5255392-2c66-4150-b49d-534e0ecd5f0e" + "f0ec6f40-1a12-4081-ad44-d30f952bcefa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -579,71 +599,75 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/6cc56499-1b7d-4d5c-9274-6ba3c7518645?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/04b38c8f-d7c8-4cc8-a960-6b7c425afa8c?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/6cc56499-1b7d-4d5c-9274-6ba3c7518645?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "134" + ], "x-ms-correlation-request-id": [ - "d5ebccbd-a9da-4760-a845-6e2e95dde6e2" + "0137b90b-24cf-4a12-be4d-09bf261783b0" ], "x-ms-request-id": [ - "087c94f8-dd6e-4f53-95bd-c2cb50f4f6f4" + "34390278-295c-4d8c-b934-ef80e2d1bdb0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010617Z:d5ebccbd-a9da-4760-a845-6e2e95dde6e2" + "WESTCENTRALUS:20170309T081448Z:0137b90b-24cf-4a12-be4d-09bf261783b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/04b38c8f-d7c8-4cc8-a960-6b7c425afa8c?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "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 \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2208\",\r\n \"key\": \"I/kyaczBH73Rap3dIurn8yYDWKjqobL4nOqoDVsFMl3FMxPctrfJnV8rF8XEHOForFMRiY3qnRgoOZkKEGIe/Q==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4465\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7775\",\r\n \"key\": \"WEB_SERVICE_KEY_SAMPLE3\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/commitmentPlans/amlcp3131\"\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5902" + "15025" ], "x-ms-client-request-id": [ - "654ca5a3-69e3-4a26-b4e7-5da4f70f16aa" + "5865675e-72a2-4087-9543-2d8d8635d44a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552\",\r\n \"name\": \"amlws552\",\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\": \"amlstor2208\",\r\n \"key\": \"I/kyaczBH73Rap3dIurn8yYDWKjqobL4nOqoDVsFMl3FMxPctrfJnV8rF8XEHOForFMRiY3qnRgoOZkKEGIe/Q==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4465\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150\",\r\n \"name\": \"amlws3150\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6165" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,323 +675,304 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:36 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "426" + ], "x-ms-correlation-request-id": [ - "b62747ac-8123-445e-8e9e-ed9de521c49e" + "083acf93-52fc-4e39-a116-d5753960ac0d" ], "x-ms-request-id": [ - "e8813754-22c8-40ec-a047-86083d5ab741" + "3a2d7653-20d5-4d1f-80d8-283d3df19e91" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010559Z:b62747ac-8123-445e-8e9e-ed9de521c49e" + "WESTCENTRALUS:20170309T081437Z:083acf93-52fc-4e39-a116-d5753960ac0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:59 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2Y5MzgyMjI1LWU5MDktNDA2Yy1iYTcxLWZjMDZjNTI4YzU0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2EyYTY4NGEtZjE5ZS00YzY1LTg1NTYtMjNhYjRjNjc5NDYxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"name\": \"f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:06:00.4573973Z\",\r\n \"percentComplete\": 0.44444444444444442\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461\",\r\n \"name\": \"ca2a684a-f19e-4c65-8556-23ab4c679461\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:14:37.3457384Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "4862982e-c897-4a77-ba20-bea5d689d917" - ], - "x-ms-request-id": [ - "acafabd9-b179-4c8d-ac87-3433a373fb49" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14649" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T010605Z:4862982e-c897-4a77-ba20-bea5d689d917" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:14:42 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:06:05 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2Y5MzgyMjI1LWU5MDktNDA2Yy1iYTcxLWZjMDZjNTI4YzU0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"name\": \"f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:06:00.4573973Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "147" ], "x-ms-correlation-request-id": [ - "968499d1-9010-49c0-9913-fde48cc731de" + "36dc7b2f-1001-435b-84b1-bd70d24d2960" ], "x-ms-request-id": [ - "9d191b97-ec4f-43f0-bb5e-b49391921798" + "57f0cf63-e525-4f63-aae9-92269b761eed" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14648" + "14999" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010610Z:968499d1-9010-49c0-9913-fde48cc731de" + "WESTCENTRALUS:20170309T081442Z:36dc7b2f-1001-435b-84b1-bd70d24d2960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:10 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2Y5MzgyMjI1LWU5MDktNDA2Yy1iYTcxLWZjMDZjNTI4YzU0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2EyYTY4NGEtZjE5ZS00YzY1LTg1NTYtMjNhYjRjNjc5NDYxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"name\": \"f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:06:00.4573973Z\",\r\n \"endTime\": \"2016-05-18T01:06:14.285295Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461\",\r\n \"name\": \"ca2a684a-f19e-4c65-8556-23ab4c679461\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:14:37.3457384Z\",\r\n \"endTime\": \"2017-03-09T08:14:46.958284Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "379" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "def63a96-9fcb-44c6-a2f0-33813dc1f521" + "48fee010-4969-4b5f-8f88-9ba6619025e2" ], "x-ms-request-id": [ - "109e01e0-0c73-4423-87a0-24e3f615f351" + "cf3e5d8b-cecb-491d-8a08-de044b1ea9a2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14647" + "14998" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010615Z:def63a96-9fcb-44c6-a2f0-33813dc1f521" + "WESTCENTRALUS:20170309T081447Z:48fee010-4969-4b5f-8f88-9ba6619025e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:15 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552\",\r\n \"name\": \"amlws552\",\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-18T01:05:59.0368953Z\",\r\n \"modifiedOn\": \"2016-05-18T01:06:14.3435366Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/d127cff59c3c4c3d9d126ed1658441aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2208\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150\",\r\n \"name\": \"amlws3150\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:14:36.8400351Z\",\r\n \"modifiedOn\": \"2017-03-09T08:14:47.0178767Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bd79b2cc889247bdbbe8d659358bbdde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7775\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_02\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5914" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "37" + ], "x-ms-correlation-request-id": [ - "7173cb00-1d0d-489a-a66e-9b34163ce2a7" + "58b24ac7-070c-46ad-aaaa-7e8b196fde8f" ], "x-ms-request-id": [ - "529754e9-73fb-4be0-8caf-b97626f9ab48" + "295583d1-013b-4671-a9fd-b3f5a802ed82" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14646" + "14997" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010616Z:7173cb00-1d0d-489a-a66e-9b34163ce2a7" + "WESTCENTRALUS:20170309T081447Z:58b24ac7-070c-46ad-aaaa-7e8b196fde8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:15 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a85aa89b-7119-44d6-9bdb-c9e626ce593f" + "62bb9039-86f9-401f-a254-bd681b7eed90" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552\",\r\n \"name\": \"amlws552\",\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-18T01:05:59.0368953Z\",\r\n \"modifiedOn\": \"2016-05-18T01:06:14.3435366Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/d127cff59c3c4c3d9d126ed1658441aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2208\"\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 \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150\",\r\n \"name\": \"amlws3150\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:14:36.8400351Z\",\r\n \"modifiedOn\": \"2017-03-09T08:14:47.0178767Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bd79b2cc889247bdbbe8d659358bbdde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7775\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\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 \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_02\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5914" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "15" + ], "x-ms-correlation-request-id": [ - "a9681542-a764-4d63-9cce-4e96df23c50a" + "37bddbdd-a03c-404a-8bad-e44ff207a114" ], "x-ms-request-id": [ - "dc151d4a-2c61-4e07-8015-a83ebaa66bed" + "31396276-731a-46b5-9b0d-01337cb0536b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14645" + "14996" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010616Z:a9681542-a764-4d63-9cce-4e96df23c50a" + "WESTCENTRALUS:20170309T081447Z:37bddbdd-a03c-404a-8bad-e44ff207a114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:15 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8def8011-a759-4ef1-b379-b9aea40f07b5" + "a422b86d-607e-43c1-878d-857ea94fa6a9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.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: amlws552.\"\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: amlws3150.\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "273" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -975,158 +980,176 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "4b143d24-dd60-4342-9d8c-991958184cca" + "5730e878-3598-4206-ae4f-bb3702ee11ce" ], "x-ms-request-id": [ - "8ce54024-afb2-4288-895e-6f7f955e8d3a" + "9c2fda23-f466-4f04-8ed7-26e1b5a4a352" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14640" + "14993" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010622Z:4b143d24-dd60-4342-9d8c-991958184cca" + "WESTCENTRALUS:20170309T081453Z:5730e878-3598-4206-ae4f-bb3702ee11ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:21 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552/listKeys?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150/listKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTAvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edf68e15-1c41-4453-8152-27efba01e4a4" + "7d0516bf-4790-420c-90d6-a9bba186c98d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n}", + "ResponseBody": "{\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "217" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "7" + ], "x-ms-correlation-request-id": [ - "56120551-0b31-4e5a-97c5-e9ad87c743bb" + "a34773aa-5872-43cb-a3dc-714152d45a05" ], "x-ms-request-id": [ - "c9ed0113-e522-44a5-82a9-b3889e88f7be" + "cb5af364-81a5-4b05-b6c4-d89f53615c40" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14644" + "14995" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010616Z:56120551-0b31-4e5a-97c5-e9ad87c743bb" + "WESTCENTRALUS:20170309T081447Z:a34773aa-5872-43cb-a3dc-714152d45a05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:16 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/04b38c8f-d7c8-4cc8-a960-6b7c425afa8c?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzA0YjM4YzhmLWQ3YzgtNGNjOC1hOTYwLTZiN2M0MjVhZmE4Yz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/6cc56499-1b7d-4d5c-9274-6ba3c7518645?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNmNjNTY0OTktMWI3ZC00ZDVjLTkyNzQtNmJhM2M3NTE4NjQ1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/04b38c8f-d7c8-4cc8-a960-6b7c425afa8c\",\r\n \"name\": \"04b38c8f-d7c8-4cc8-a960-6b7c425afa8c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:06:18.9930625Z\",\r\n \"endTime\": \"2016-05-18T01:06:21.1806711Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/6cc56499-1b7d-4d5c-9274-6ba3c7518645\",\r\n \"name\": \"6cc56499-1b7d-4d5c-9274-6ba3c7518645\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:14:49.3374823Z\",\r\n \"endTime\": \"2017-03-09T08:14:51.1452287Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:52 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "34f71097-d7cf-40f2-8724-8d2af695817e" + "76b7c63c-6fd9-4412-9cd1-8782f2e45a48" ], "x-ms-request-id": [ - "718a3aea-0cda-4c65-b065-92af115cc827" + "bbd15565-95cb-47ef-8c15-1451f72fe695" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14641" + "14994" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010622Z:34f71097-d7cf-40f2-8724-8d2af695817e" + "WESTCENTRALUS:20170309T081453Z:76b7c63c-6fd9-4412-9cd1-8782f2e45a48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:21 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4465?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNDQ2NT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.MachineLearning//commitmentPlans/amlcp3131?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMzEzMT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af9c5f02-a018-4f23-8468-8e95c099ec57" + "abdf18b4-5ffa-4acb-b8c7-590c4c828c3e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1137,50 +1160,51 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "bc738e13-bdca-4afd-8507-790d167cf054" + "54293d56-234f-4c32-9f81-4a33d2fa2fea" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "b3ded325-6c55-4d9f-a495-460f4556def9" + "b8a4e418-7f22-4df0-8ffb-72c2f415b263" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010623Z:b3ded325-6c55-4d9f-a495-460f4556def9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:23 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "WESTCENTRALUS:20170309T081453Z:b8a4e418-7f22-4df0-8ffb-72c2f415b263" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NDY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzMTMxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2aa804be-0291-49c9-8180-f314546cc45b" + "81df91cc-954d-4c23-8bfd-6d2895c30a70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1191,9 +1215,18 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:53 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNTQzLURFUExBTUxDUDMxMzEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], @@ -1201,37 +1234,29 @@ "1196" ], "x-ms-request-id": [ - "6040c4c8-efde-4792-9fb9-77ef9dc90f7c" + "35cf3c27-beae-4ec1-9cba-13a4c0005ec8" ], "x-ms-correlation-request-id": [ - "6040c4c8-efde-4792-9fb9-77ef9dc90f7c" + "35cf3c27-beae-4ec1-9cba-13a4c0005ec8" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010624Z:6040c4c8-efde-4792-9fb9-77ef9dc90f7c" + "WESTCENTRALUS:20170309T081453Z:35cf3c27-beae-4ec1-9cba-13a4c0005ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4NDIzLURFUExBTUxDUDQ0NjUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4NDIzLURFUExBTUxDUDQ0NjUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzROREl6TFVSRlVFeEJUVXhEVURRME5qVXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNTQzLURFUExBTUxDUDMxMzEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3lOVFF6TFVSRlVFeEJUVXhEVURNeE16RXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1242,47 +1267,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:15:23 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNTQzLURFUExBTUxDUDMxMzEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "14995" ], "x-ms-request-id": [ - "51dc5ef7-7ffb-4804-80c4-16e08697f0de" + "c9c815a8-db1a-4496-9f7c-66fc68604529" ], "x-ms-correlation-request-id": [ - "51dc5ef7-7ffb-4804-80c4-16e08697f0de" + "c9c815a8-db1a-4496-9f7c-66fc68604529" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010654Z:51dc5ef7-7ffb-4804-80c4-16e08697f0de" + "WESTCENTRALUS:20170309T081523Z:c9c815a8-db1a-4496-9f7c-66fc68604529" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4NDIzLURFUExBTUxDUDQ0NjUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4NDIzLURFUExBTUxDUDQ0NjUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzROREl6TFVSRlVFeEJUVXhEVURRME5qVXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNTQzLURFUExBTUxDUDMxMzEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3lOVFF6TFVSRlVFeEJUVXhEVURNeE16RXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1290,47 +1316,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:15:52 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14994" ], "x-ms-request-id": [ - "28af0c5d-4475-4942-8701-ea27584a3c49" + "47dcb729-9e12-4636-8a6a-8387f3b497f2" ], "x-ms-correlation-request-id": [ - "28af0c5d-4475-4942-8701-ea27584a3c49" + "47dcb729-9e12-4636-8a6a-8387f3b497f2" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010724Z:28af0c5d-4475-4942-8701-ea27584a3c49" + "WESTCENTRALUS:20170309T081553Z:47dcb729-9e12-4636-8a6a-8387f3b497f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:07:24 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Storage/storageAccounts/amlstor2208?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMjA4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Storage/storageAccounts/amlstor7775?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Nzc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42be3745-0c56-4c0b-986f-db4dd24efa81" + "587a053e-5607-458f-b536-3cd0487b52d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -1341,51 +1368,52 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "7cd07240-6d34-45f5-8c6c-4d361400cf10" + "Date": [ + "Thu, 09 Mar 2017 08:15:54 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9934157e-6dbc-44d2-af86-eee3495474ab" + ], "x-ms-correlation-request-id": [ - "7cd07240-6d34-45f5-8c6c-4d361400cf10" + "9934157e-6dbc-44d2-af86-eee3495474ab" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010726Z:7cd07240-6d34-45f5-8c6c-4d361400cf10" + "WESTCENTRALUS:20170309T081554Z:9934157e-6dbc-44d2-af86-eee3495474ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:07:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70445990-2eef-40c1-a5f6-e0e4023daf61" + "0d9b19fd-6fa9-4bfe-ad0a-26e348cb32b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1396,9 +1424,18 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:15:54 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI1NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], @@ -1406,37 +1443,29 @@ "1195" ], "x-ms-request-id": [ - "902a2323-8ea1-4a57-b059-4a09452acbd8" + "dd3996ad-5e65-4406-9ac1-67a4f07e4b61" ], "x-ms-correlation-request-id": [ - "902a2323-8ea1-4a57-b059-4a09452acbd8" + "dd3996ad-5e65-4406-9ac1-67a4f07e4b61" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010727Z:902a2323-8ea1-4a57-b059-4a09452acbd8" + "WESTCENTRALUS:20170309T081554Z:dd3996ad-5e65-4406-9ac1-67a4f07e4b61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:07:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg0MjMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg0MjMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzBNak10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI1NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6STFORE10VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1447,47 +1476,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:16:24 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI1NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14993" ], "x-ms-request-id": [ - "c137fb6b-5839-43be-8141-db9882d4223e" + "55a3db89-8284-4248-951a-18b266651c54" ], "x-ms-correlation-request-id": [ - "c137fb6b-5839-43be-8141-db9882d4223e" + "55a3db89-8284-4248-951a-18b266651c54" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010757Z:c137fb6b-5839-43be-8141-db9882d4223e" + "WESTCENTRALUS:20170309T081624Z:55a3db89-8284-4248-951a-18b266651c54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:07:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg0MjMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg0MjMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzBNak10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI1NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6STFORE10VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1498,29 +1528,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:16:54 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14992" ], "x-ms-request-id": [ - "99f3f65e-3479-4599-9021-1d2f0d4550d1" + "8f0a0b8e-d916-429d-bca6-12e011c3d188" ], "x-ms-correlation-request-id": [ - "99f3f65e-3479-4599-9021-1d2f0d4550d1" + "8f0a0b8e-d916-429d-bca6-12e011c3d188" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010827Z:99f3f65e-3479-4599-9021-1d2f0d4550d1" + "WESTCENTRALUS:20170309T081654Z:8f0a0b8e-d916-429d-bca6-12e011c3d188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:08:26 GMT" ] }, "StatusCode": 200 @@ -1528,13 +1558,13 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws552", - "amlrg8423", - "amlcp4465", - "amlstor2208" + "amlws3150", + "amlrg2543", + "amlcp3131", + "amlstor7775" ] }, "Variables": { - "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" } } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebServiceWithLargePayload.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebServiceWithLargePayload.json new file mode 100644 index 000000000000..07210aca5e0b --- /dev/null +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebServiceWithLargePayload.json @@ -0,0 +1,1686 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ], + "x-ms-client-request-id": [ + "88f13fea-035c-4560-bb9d-de90fc6c576d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691\",\r\n \"name\": \"amlrg2691\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:58:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9d8aa4a8-12f7-439d-a704-b36f8086045e" + ], + "x-ms-correlation-request-id": [ + "9d8aa4a8-12f7-439d-a704-b36f8086045e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195852Z:9d8aa4a8-12f7-439d-a704-b36f8086045e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Storage/storageAccounts/amlstor2329?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMzI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "97" + ], + "x-ms-client-request-id": [ + "b9c32313-3496-4dd3-ac83-36f85fdc3df5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:58:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/3d9bba6c-22f7-443c-af90-9ceeaebd93d9?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "96a75d12-be25-415a-b053-23f4f2794484" + ], + "x-ms-correlation-request-id": [ + "96a75d12-be25-415a-b053-23f4f2794484" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195857Z:96a75d12-be25-415a-b053-23f4f2794484" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/3d9bba6c-22f7-443c-af90-9ceeaebd93d9?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNkOWJiYTZjLTIyZjctNDQzYy1hZjkwLTljZWVhZWJkOTNkOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ace24285-52b2-4015-a2f3-4dbe43e40b39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "ace24285-52b2-4015-a2f3-4dbe43e40b39" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195927Z:ace24285-52b2-4015-a2f3-4dbe43e40b39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Storage/storageAccounts/amlstor2329/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMzI5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2191e53b-f9dc-432f-879d-5512238e64a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"WEB_SERVICE_KEY_SAMPLE7\",\r\n \"key2\": \"WEB_SERVICE_KEY_SAMPLE8\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6f47e8c8-35f8-450a-b511-745b15b53507" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6f47e8c8-35f8-450a-b511-745b15b53507" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195927Z:6f47e8c8-35f8-450a-b511-745b15b53507" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "561d3768-6960-4227-a829-a93b4c41bcb8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/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 \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\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 \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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 \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "35452003-7df6-4289-ac78-0b3d186da5f8" + ], + "x-ms-correlation-request-id": [ + "35452003-7df6-4289-ac78-0b3d186da5f8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195927Z:35452003-7df6-4289-ac78-0b3d186da5f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNTE0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "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\": \"amlcp1514\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\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": [ + "1258" + ], + "x-ms-client-request-id": [ + "e63fe25e-1121-49a3-a32b-8fd3f42aae80" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514\",\r\n \"name\": \"deplamlcp1514\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp1514\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T19:59:29.335507Z\",\r\n \"duration\": \"PT0.6010767S\",\r\n \"correlationId\": \"290d6a31-b88e-4e9b-ae3f-f1668e06848e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "768" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514/operationStatuses/08587125173167617942?api-version=2015-11-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "290d6a31-b88e-4e9b-ae3f-f1668e06848e" + ], + "x-ms-correlation-request-id": [ + "290d6a31-b88e-4e9b-ae3f-f1668e06848e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195929Z:290d6a31-b88e-4e9b-ae3f-f1668e06848e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514/operationStatuses/08587125173167617942?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNTE0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1MTczMTY3NjE3OTQyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "e077cb1e-f440-4aca-bf20-247af338f318" + ], + "x-ms-correlation-request-id": [ + "e077cb1e-f440-4aca-bf20-247af338f318" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195959Z:e077cb1e-f440-4aca-bf20-247af338f318" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNTE0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514\",\r\n \"name\": \"deplamlcp1514\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp1514\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\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\": \"2017-03-09T19:59:33.6330415Z\",\r\n \"duration\": \"PT4.8986112S\",\r\n \"correlationId\": \"290d6a31-b88e-4e9b-ae3f-f1668e06848e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp1514\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "37f635b1-da82-4a48-b7dc-cc8739cf29f8" + ], + "x-ms-correlation-request-id": [ + "37f635b1-da82-4a48-b7dc-cc8739cf29f8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195959Z:37f635b1-da82-4a48-b7dc-cc8739cf29f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.MachineLearning//commitmentPlans/amlcp1514?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMTUxND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "606b6767-dcb8-415b-b3dd-70c309af2d67" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"etag\": \"0000991c-0000-0000-0000-58c1b4260000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/commitmentPlans/amlcp1514\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp1514\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T19:59:30.4654461Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3316a769-6d79-4bba-9baa-1089a4c958cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "e38085a3-d682-43d3-a0d0-18a40a6babe3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200000Z:e38085a3-d682-43d3-a0d0-18a40a6babe3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6a7eeca-ab8f-4cf7-b1fa-20cbff793c9f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "f8761b39-5b35-4064-9049-823b1df3b9c3" + ], + "x-ms-correlation-request-id": [ + "f8761b39-5b35-4064-9049-823b1df3b9c3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200005Z:f8761b39-5b35-4064-9049-823b1df3b9c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8bd9478-9495-4c5a-8c9b-7d3da136a131" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/32fb7933-1995-4936-89dd-6dfe3006c3a6?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "139" + ], + "x-ms-correlation-request-id": [ + "8446b206-c16a-4841-bb74-e8fe9373a44c" + ], + "x-ms-request-id": [ + "d6ac9c1e-d392-47ca-861a-1d7527e83eae" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:8446b206-c16a-4841-bb74-e8fe9373a44c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"title\": \"Some title (new contract large payload)\",\r\n \"description\": \"This is some service description (new contract large payload)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2329\",\r\n \"key\": \"WEB_SERVICE_KEY_SAMPLE7\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/commitmentPlans/amlcp1514\"\r\n },\r\n \"payloadsInBlobStorage\": true,\r\n \"PayloadsLocation\": {\r\n \"uri\": \"https://bohurp.blob.core.windows.net/uploadeddata/payload.json?st=2017-03-09T19%3A18%3A00Z&se=2018-03-10T19%3A18%3A00Z&sp=rl&sv=2015-12-11&sr=b&sig=SAS_SIGNATURE\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1428" + ], + "x-ms-client-request-id": [ + "6506bf55-2632-454f-9665-39d745362761" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463\",\r\n \"name\": \"amlws2463\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "378" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "405" + ], + "x-ms-correlation-request-id": [ + "87bad3bd-de50-4d71-89a0-8969aef79ca6" + ], + "x-ms-request-id": [ + "924ab345-8c19-4e7b-81c9-ecf9e0725206" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200006Z:87bad3bd-de50-4d71-89a0-8969aef79ca6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2YwMzhkZDQtN2YwNy00YTg4LTlhZTgtOTk1NGY1MTBjM2U4P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"name\": \"cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T20:00:06.2131485Z\",\r\n \"percentComplete\": 0.6\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "112" + ], + "x-ms-correlation-request-id": [ + "99acd922-8fc3-497c-b6cd-d30ddd2c38ad" + ], + "x-ms-request-id": [ + "d3bcee0d-1e54-41e4-9cb2-749413876adf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200011Z:99acd922-8fc3-497c-b6cd-d30ddd2c38ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2YwMzhkZDQtN2YwNy00YTg4LTlhZTgtOTk1NGY1MTBjM2U4P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"name\": \"cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T20:00:06.2131485Z\",\r\n \"percentComplete\": 0.9\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "15" + ], + "x-ms-correlation-request-id": [ + "218ff60e-e691-40b0-a7f1-1d546c7cdf3e" + ], + "x-ms-request-id": [ + "9d408b6d-1a7e-42ad-b2c1-e3fd54c7e47f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200016Z:218ff60e-e691-40b0-a7f1-1d546c7cdf3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2YwMzhkZDQtN2YwNy00YTg4LTlhZTgtOTk1NGY1MTBjM2U4P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"name\": \"cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T20:00:06.2131485Z\",\r\n \"endTime\": \"2017-03-09T20:00:17.2944292Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], + "x-ms-correlation-request-id": [ + "913a162a-e810-490c-a436-1da226425a17" + ], + "x-ms-request-id": [ + "d2b59d2f-fdda-4481-be95-848c1162da2d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:913a162a-e810-490c-a436-1da226425a17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463\",\r\n \"name\": \"amlws2463\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T20:00:07.2562664Z\",\r\n \"modifiedOn\": \"2017-03-09T20:00:17.3510749Z\",\r\n \"title\": \"Some title (new contract large payload)\",\r\n \"description\": \"This is some service description (new contract large payload)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/330ae2e4b5b04a44bf7a102c659eff43/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2329\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"Name\": \"Import Data\",\r\n \"Type\": \"Module\",\r\n \"LocationInfo\": {\r\n \"Uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"Credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"Name\": \"Join Data\",\r\n \"Type\": \"Module\",\r\n \"LocationInfo\": {\r\n \"Uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"Credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\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 \"0\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"Inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n },\r\n \"GlobalParameters\": null\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"SourceNodeId\": \"node1\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node1\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node3\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node2\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_11\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "83" + ], + "x-ms-correlation-request-id": [ + "4e00f8cb-1da1-495a-8af4-7c8a860fc23e" + ], + "x-ms-request-id": [ + "14452906-85a8-44f4-bb07-aacbfb11d1b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:4e00f8cb-1da1-495a-8af4-7c8a860fc23e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56f7b17d-5d09-4024-a99e-29146985e226" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463\",\r\n \"name\": \"amlws2463\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T20:00:07.2562664Z\",\r\n \"modifiedOn\": \"2017-03-09T20:00:17.3510749Z\",\r\n \"title\": \"Some title (new contract large payload)\",\r\n \"description\": \"This is some service description (new contract large payload)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/330ae2e4b5b04a44bf7a102c659eff43/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2329\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"Name\": \"Import Data\",\r\n \"Type\": \"Module\",\r\n \"LocationInfo\": {\r\n \"Uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"Credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"Name\": \"Join Data\",\r\n \"Type\": \"Module\",\r\n \"LocationInfo\": {\r\n \"Uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"Credentials\": \"\"\r\n }\r\n }\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 \"0\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\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 \"0\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"Inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n },\r\n \"GlobalParameters\": null\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"SourceNodeId\": \"node1\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node1\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node3\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node2\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_11\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "18" + ], + "x-ms-correlation-request-id": [ + "4669d197-1dfa-4436-873f-087b5ce5a5ae" + ], + "x-ms-request-id": [ + "707040cb-18e2-4a2a-996e-f5e49703357c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:4669d197-1dfa-4436-873f-087b5ce5a5ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fbb5e91-6aff-404d-87ee-2fcde38a7fe6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.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: amlws2463.\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-duration": [ + "10" + ], + "x-ms-correlation-request-id": [ + "68212413-f373-45cb-a18f-4b39857281be" + ], + "x-ms-request-id": [ + "bcd45d24-3592-4007-a956-fb2ef4f4ed8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200032Z:68212413-f373-45cb-a18f-4b39857281be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463/listKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b369c73-0838-4265-aaea-3425c7aef700" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], + "x-ms-correlation-request-id": [ + "64b4e51a-93ab-4e31-8670-99730d067da1" + ], + "x-ms-request-id": [ + "aa8f39ab-91e7-4caa-b025-db1cce00c901" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:64b4e51a-93ab-4e31-8670-99730d067da1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzJmYjc5MzMtMTk5NS00OTM2LTg5ZGQtNmRmZTMwMDZjM2E2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6\",\r\n \"name\": \"32fb7933-1995-4936-89dd-6dfe3006c3a6\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T20:00:27.9258746Z\",\r\n \"percentComplete\": 0.2\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "14" + ], + "x-ms-correlation-request-id": [ + "dc4f3467-6c90-4d08-a57f-65cecd641c56" + ], + "x-ms-request-id": [ + "a34b86c8-ba1b-45d1-8879-473e9ba0b640" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200027Z:dc4f3467-6c90-4d08-a57f-65cecd641c56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzJmYjc5MzMtMTk5NS00OTM2LTg5ZGQtNmRmZTMwMDZjM2E2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6\",\r\n \"name\": \"32fb7933-1995-4936-89dd-6dfe3006c3a6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T20:00:27.9258746Z\",\r\n \"endTime\": \"2017-03-09T20:00:28.7768309Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "25" + ], + "x-ms-correlation-request-id": [ + "5c7c5ebc-5109-4669-aad5-23d52d4a8111" + ], + "x-ms-request-id": [ + "9b5f60b1-eeb0-461d-8b4c-1d208dc09e46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200032Z:5c7c5ebc-5109-4669-aad5-23d52d4a8111" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.MachineLearning//commitmentPlans/amlcp1514?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMTUxND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d614c823-9020-4122-abed-165106579ea5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "efab9518-6b3f-4f2e-88e5-af817183bb7a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "9c6cdb47-fdd6-4e57-9022-5d9dd47379e0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200034Z:9c6cdb47-fdd6-4e57-9022-5d9dd47379e0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNTE0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e50c5de0-3a49-426f-b055-1ed582df105e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNjkxLURFUExBTUxDUDE1MTQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "87836740-4e72-4188-810b-3eaa032bb6f8" + ], + "x-ms-correlation-request-id": [ + "87836740-4e72-4188-810b-3eaa032bb6f8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200034Z:87836740-4e72-4188-810b-3eaa032bb6f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNjkxLURFUExBTUxDUDE1MTQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3lOamt4TFVSRlVFeEJUVXhEVURFMU1UUXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:01:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNjkxLURFUExBTUxDUDE1MTQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "40f31438-bd06-4f66-9991-cd5abd58bd68" + ], + "x-ms-correlation-request-id": [ + "40f31438-bd06-4f66-9991-cd5abd58bd68" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200104Z:40f31438-bd06-4f66-9991-cd5abd58bd68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNjkxLURFUExBTUxDUDE1MTQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3lOamt4TFVSRlVFeEJUVXhEVURFMU1UUXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:01:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "4b219bc7-59a0-4fc7-945e-3b2dda688025" + ], + "x-ms-correlation-request-id": [ + "4b219bc7-59a0-4fc7-945e-3b2dda688025" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200134Z:4b219bc7-59a0-4fc7-945e-3b2dda688025" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Storage/storageAccounts/amlstor2329?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMzI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "989cbc1c-128f-4062-b7c6-bf2c88f4d105" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:01:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a4b6ae6a-3434-47a8-bf0a-85a6c3de9dc6" + ], + "x-ms-correlation-request-id": [ + "a4b6ae6a-3434-47a8-bf0a-85a6c3de9dc6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200135Z:a4b6ae6a-3434-47a8-bf0a-85a6c3de9dc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "935a8f69-77be-4c4c-8f64-fccc5f1b1ead" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:01:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI2OTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "022f5110-e73e-4705-a81f-b964e74f6a97" + ], + "x-ms-correlation-request-id": [ + "022f5110-e73e-4705-a81f-b964e74f6a97" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200135Z:022f5110-e73e-4705-a81f-b964e74f6a97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI2OTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6STJPVEV0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:02:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI2OTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "53558d59-bc9f-41de-b1b4-5a789fae61a9" + ], + "x-ms-correlation-request-id": [ + "53558d59-bc9f-41de-b1b4-5a789fae61a9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200205Z:53558d59-bc9f-41de-b1b4-5a789fae61a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI2OTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6STJPVEV0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:02:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "e0b7373c-9eff-4e04-a73e-ff2d911d75bd" + ], + "x-ms-correlation-request-id": [ + "e0b7373c-9eff-4e04-a73e-ff2d911d75bd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200235Z:e0b7373c-9eff-4e04-a73e-ff2d911d75bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunAMLWebServiceTestScenario": [ + "amlws2463", + "amlrg2691", + "amlcp1514", + "amlstor2329" + ] + }, + "Variables": { + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Dogfood.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Dogfood.json index 722c34884183..bfa406ab9ada 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Dogfood.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Dogfood.json @@ -4,8 +4,8 @@ "description": "This is some service description", "readOnly": "false", "keys": { - "primary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==", - "secondary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==" + "primary": "SAMPLE_KEY_1", + "secondary": "SAMPLE_KEY_2" }, "storageAccount": { "name": "THIS IS FILLED IN DYNAMICALLY BY THE TEST", diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_LargePayload_Prod.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_LargePayload_Prod.json new file mode 100644 index 000000000000..f5426df80062 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_LargePayload_Prod.json @@ -0,0 +1,36 @@ +{ + "properties": { + "title": "Some title (new contract large payload)", + "description": "This is some service description (new contract large payload)", + "readOnly": false, + "exposeSampleData": false, + "realtimeConfiguration": { + "maxConcurrentCalls": 20 + }, + "diagnostics": { + "level": "None" + }, + "keys": { + "primary": "SAMPLE_KEY_1", + "secondary": "SAMPLE_KEY_2" + }, + "commitmentPlan": { + "id": "WILL BE FILLED IN BY THE TEST" + }, + "storageAccount": { + "name": "WILL BE FILLED IN BY THE TEST", + "key": "WILL BE FILLED IN BY THE TEST" + }, + "PayloadsInBlobStorage": true, + "MachineLearningWorkspace": { + "Id": "8b841df9d60a4d54bcebd4948b10a5db" + }, + "packageType": "Graph", + "payloadsLocation": { + "Uri": "https://bohurp.blob.core.windows.net/uploadeddata/payload.json?st=2017-03-09T19%3A18%3A00Z&se=2018-03-10T19%3A18%3A00Z&sp=rl&sv=2015-12-11&sr=b&sig=SAS_SIGNATURE", + "Credentials": "" + } + }, + "location": "West Central US", + "tags": {} +} \ 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 index 662ee6f557d8..9a7c8ddc565b 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json @@ -1,190 +1,489 @@ { "properties": { - "title": "ServiceTitle", - "description": "This is some service description", - "readOnly": "false", + "title": "Some title (new contract)", + "description": "This is some service description (new contract)", + "readOnly": false, + "exposeSampleData": false, + "realtimeConfiguration": { + "maxConcurrentCalls": 20 + }, + "diagnostics": { + "level": "None" + }, + "commitmentPlan": { + "id": "WILL BE FILLED IN BY THE TEST" + }, "keys": { - "primary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==", - "secondary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==" + "primary": "SAMPLE_KEY_1", + "secondary": "SAMPLE_KEY_2" }, "storageAccount": { - "name": "THIS IS FILLED IN DYNAMICALLY BY THE TEST", - "key": "THIS IS FILLED IN DYNAMICALLY BY THE TEST" + "name": "WILL BE FILLED IN BY THE TEST", + "key": "WILL BE FILLED IN BY THE TEST" }, - "commitmentPlan": { - "id": "THIS IS FILLED IN DYNAMICALLY BY THE TEST" + "PayloadsInBlobStorage": false, + "MachineLearningWorkspace": { + "Id": "8b841df9d60a4d54bcebd4948b10a5db" }, - "assets": { + "Assets": { "asset1": { - "name": "Apply Math Operation", - "type": "Module", - "locationInfo": { - "uri": "aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571" + "Name": "Import Data", + "Type": "Module", + "LocationInfo": { + "Uri": "aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743", + "Credentials": "" + } + }, + "asset2": { + "Name": "Join Data", + "Type": "Module", + "LocationInfo": { + "Uri": "aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712", + "Credentials": "" } } }, - "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": { + "Parameters": {}, + "Input": { + "Title": "", + "Description": "", + "Type": "object", + "Properties": { "input1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "Class": { - "type": "Number", - "format": "Double", + "Title": "", + "Description": "", + "Type": "object", + "Properties": { + "0": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "13": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "39": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "40": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "2174": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "77516": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "State-gov": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Bachelors": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Never-married": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Adm-clerical": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Not-in-family": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "sepal-length": { - "type": "Number", - "format": "Double", + "White": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "sepal-width": { - "type": "Number", - "format": "Double", + "Male": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "petal-length": { - "type": "Number", - "format": "Double", + "United-States": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "petal-width": { - "type": "Number", - "format": "Double", + "<=50K": { + "Type": "String", + "Format": "", "x-ms-isnullable": false } } } } }, - "output": { - "title": "", - "description": "", - "type": "object", - "properties": { + "Output": { + "Title": "", + "Description": "", + "Type": "object", + "Properties": { "output1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "Class": { - "type": "Number", - "format": "Double", + "Title": "", + "Description": "", + "Type": "object", + "Properties": { + "0": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "13": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "39": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "40": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "2174": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "77516": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "State-gov": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Bachelors": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Never-married": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Adm-clerical": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Not-in-family": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "White": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Male": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "United-States": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "<=50K": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "39 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "State-gov (2)": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "77516 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "Bachelors (2)": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "13 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "Never-married (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "sepal-length": { - "type": "Number", - "format": "Double", + "Adm-clerical (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "sepal-width": { - "type": "Number", - "format": "Double", + "Not-in-family (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "petal-length": { - "type": "Number", - "format": "Double", + "White (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "petal-width": { - "type": "Number", - "format": "Double", + "Male (2)": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "2174 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "0 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "40 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "United-States (2)": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "<=50K (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false } } } } }, - "exposeSampleData": "true", - "exampleRequest": { - "inputs": { - "input1": [ - [ "1", "2.3", "0.5", "4.3", "1.2" ], - [ "0", "0.5", "4.3", "1.2", "2.5" ], - [ "0", "4.3", "1.2", "6.5", "6.3" ], - [ "1", "7.8", "8.0", "2.3", "0.5" ], - [ "1", "1.3", "5.5", "2.2", "9.2" ] - ] - } - }, "packageType": "Graph", - "package": { + "Package": { "Nodes": { "node1": { - "inputId": "input1" + "AssetId": "asset1", + "Parameters": { + "Please Specify Data Source": { + "Value": "AzureBlobStorage", + "CertificateThumbprint": "" + }, + "Please Specify Authentication Type": { + "Value": "Account", + "CertificateThumbprint": "" + }, + "Account Name": { + "Value": "bohurp", + "CertificateThumbprint": "" + }, + "Account Key": { + "Value": "ENCRYPTED_VALUE_01", + "CertificateThumbprint": "SOME_THUMBPRINT" + }, + "Path to container or directory or blob": { + "Value": "uploadeddata/adult.data", + "CertificateThumbprint": "" + }, + "Blob File format": { + "Value": "CSV", + "CertificateThumbprint": "" + }, + "File has Header Row": { + "Value": "True", + "CertificateThumbprint": "" + } + } }, "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" + "AssetId": "asset2", + "Parameters": { + "Comma-separated case-sensitive names of join key columns for L": { + "Value": "%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D", + "CertificateThumbprint": "" + }, + "Comma-separated case-sensitive names of join key columns for R": { + "Value": "%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D", + "CertificateThumbprint": "" + }, + "Match case": { + "Value": "True", + "CertificateThumbprint": "" + }, + "Join type": { + "Value": "Inner Join", + "CertificateThumbprint": "" + }, + "Keep right key columns in joined table": { + "Value": "True", + "CertificateThumbprint": "" + } } }, "node3": { - "outputId": "output1" + "InputId": "input1" + }, + "node4": { + "OutputId": "output1" } }, "Edges": [ { - "sourceNodeId": "node1", - "targetNodeId": "node2", - "targetPortId": "Dataset" + "SourceNodeId": "node1", + "SourcePortId": "Results dataset", + "TargetNodeId": "node2", + "TargetPortId": "Dataset1" }, { - "sourceNodeId": "node2", - "sourcePortId": "Results dataset", - "targetNodeId": "node3" - } - ], - "GraphParameters": { - "Category": { - "description": "", - "Links": [ - { - "NodeId": "node2", - "ParameterKey": "Category" - } - ] - }, - "Trigonometric Function": { - "Links": [ - { - "NodeId": "node2", - "ParameterKey": "Trigonometric Function" - } - ] + "SourceNodeId": "node1", + "SourcePortId": "Results dataset", + "TargetNodeId": "node2", + "TargetPortId": "Dataset2" }, - "Column Set": { - "Links": [ - { - "NodeId": "node2", - "ParameterKey": "Column Set" - } - ] + { + "SourceNodeId": "node3", + "TargetNodeId": "node2", + "TargetPortId": "Dataset2" }, - "Output mode": { - "Links": [ - { - "NodeId": "node2", - "ParameterKey": "Output mode" - } - ] + { + "SourceNodeId": "node2", + "SourcePortId": "Results dataset", + "TargetNodeId": "node4" } - } + ], + "GraphParameters": {} + }, + "ExampleRequest": { + "Inputs": { + "input1": [ + [ + 50, + "Self-emp-not-inc", + 83311, + "Bachelors", + 13, + "Married-civ-spouse", + "Exec-managerial", + "Husband", + "White", + "Male", + 0, + 0, + 13, + "United-States", + "<=50K" + ], + [ + 38, + "Private", + 215646, + "HS-grad", + 9, + "Divorced", + "Handlers-cleaners", + "Not-in-family", + "White", + "Male", + 0, + 0, + 40, + "United-States", + "<=50K" + ], + [ + 53, + "Private", + 234721, + "11th", + 7, + "Married-civ-spouse", + "Handlers-cleaners", + "Husband", + "Black", + "Male", + 0, + 0, + 40, + "United-States", + "<=50K" + ], + [ + 28, + "Private", + 338409, + "Bachelors", + 13, + "Married-civ-spouse", + "Prof-specialty", + "Wife", + "Black", + "Female", + 0, + 0, + 40, + "Cuba", + "<=50K" + ], + [ + 37, + "Private", + 284582, + "Masters", + 14, + "Married-civ-spouse", + "Exec-managerial", + "Wife", + "White", + "Female", + 0, + 0, + 40, + "United-States", + "<=50K" + ] + ] + }, + "GlobalParameters": null } - } + }, + "location": "West Central US", + "tags": {} } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/IWebServicesOperationsAdditions.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/IWebServicesOperationsAdditions.cs index b337e5819060..6601928d70e2 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/IWebServicesOperationsAdditions.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/IWebServicesOperationsAdditions.cs @@ -16,5 +16,7 @@ public partial interface IWebServicesOperations Task> PatchWebServiceWithProperRequestIdAsync(WebService patchPayload, string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); Task RemoveWebServiceWitProperRequestIdAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } + + Task CreateRegionalPropertiesWithProperRequestIdAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); +} } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsAdditions.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsAdditions.cs index c51e6e7c409a..77982c7cd86e 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsAdditions.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsAdditions.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. +using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; @@ -123,5 +124,40 @@ internal partial class WebServicesOperations throw; } } + + /// + /// Create web service properties for a specific region. + /// + /// + /// Name of the resource group. + /// + /// + /// The Azure ML web service name which you want to reach. + /// + /// + /// The new region of Azure ML web service properties + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task CreateRegionalPropertiesWithProperRequestIdAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + var _response = await BeginCreateRegionalPropertiesWithHttpMessagesAsync( + resourceGroupName, webServiceName, region, customHeaders, cancellationToken); + try + { + var operationResult = await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); + operationResult.RequestId = _response.RequestId; + return operationResult.Body; + } + catch (CloudException cloudEx) + { + cloudEx.RequestId = _response.RequestId; + throw; + } + } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsExtensionsAdditions.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsExtensionsAdditions.cs index 17d37feeaf6a..8a9b2d753484 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsExtensionsAdditions.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsExtensionsAdditions.cs @@ -155,5 +155,47 @@ public static void RemoveWithRequestId(this IWebServicesOperations operations, s await operations.RemoveWebServiceWitProperRequestIdAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false); } + /// + /// Create web service properties for a specific region. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// The Azure ML web service name which you want to reach. + /// + /// + /// The new region of Azure ML web service properties. + /// + public static void CreateRegionalPropertiesWithRequestId(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region) + { + Task.Factory.StartNew(s => ((IWebServicesOperations)s).CreateRegionalPropertiesWithRequestIdAsync(resourceGroupName, webServiceName, region), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create web service properties for a specific region. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// The Azure ML web service name which you want to reach. + /// + /// + /// The new region of Azure ML web service properties. + /// + /// + /// The cancellation token. + /// + public static async Task CreateRegionalPropertiesWithRequestIdAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.CreateRegionalPropertiesWithProperRequestIdAsync(resourceGroupName, webServiceName, region, null, cancellationToken).ConfigureAwait(false); + } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/AzureMLWebServicesManagementClient.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/AzureMLWebServicesManagementClient.cs index d582d93bd292..97f5b86e4e18 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/AzureMLWebServicesManagementClient.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/AzureMLWebServicesManagementClient.cs @@ -1,31 +1,35 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { - using System.Linq; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; using Microsoft.Rest; using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; /// /// These APIs allow end users to operate on Azure Machine Learning Web /// Services resources. They support the following /// operations:<ul><li>Create or update a web - /// service</li><li>Get a web - /// service</li><li>Patch a web - /// service</li><li>Delete a web + /// service</li><li>Get a web service</li><li>Patch + /// a web service</li><li>Delete a web /// service</li><li>Get All Web Services in a Resource Group /// </li><li>Get All Web Services in a /// Subscription</li><li>Get Web Services /// Keys</li></ul> /// - public partial class AzureMLWebServicesManagementClient : Microsoft.Rest.ServiceClient, IAzureMLWebServicesManagementClient, IAzureClient + public partial class AzureMLWebServicesManagementClient : ServiceClient, IAzureMLWebServicesManagementClient, IAzureClient { /// /// The base URI of the service. @@ -35,17 +39,17 @@ public partial class AzureMLWebServicesManagementClient : Microsoft.Rest.Service /// /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. /// - public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// /// The Azure subscription ID. @@ -85,9 +89,9 @@ public partial class AzureMLWebServicesManagementClient : Microsoft.Rest.Service /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected AzureMLWebServicesManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected AzureMLWebServicesManagementClient(params DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -99,9 +103,9 @@ protected AzureMLWebServicesManagementClient(params System.Net.Http.DelegatingHa /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected AzureMLWebServicesManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected AzureMLWebServicesManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -116,13 +120,13 @@ protected AzureMLWebServicesManagementClient(System.Net.Http.HttpClientHandler r /// /// Thrown when a required parameter is null /// - protected AzureMLWebServicesManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected AzureMLWebServicesManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -140,13 +144,13 @@ protected AzureMLWebServicesManagementClient(System.Uri baseUri, params System.N /// /// Thrown when a required parameter is null /// - protected AzureMLWebServicesManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected AzureMLWebServicesManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -161,16 +165,16 @@ protected AzureMLWebServicesManagementClient(System.Uri baseUri, System.Net.Http /// /// Thrown when a required parameter is null /// - public AzureMLWebServicesManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public AzureMLWebServicesManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -189,16 +193,16 @@ public AzureMLWebServicesManagementClient(Microsoft.Rest.ServiceClientCredential /// /// Thrown when a required parameter is null /// - public AzureMLWebServicesManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public AzureMLWebServicesManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -217,7 +221,7 @@ public AzureMLWebServicesManagementClient(Microsoft.Rest.ServiceClientCredential /// /// Thrown when a required parameter is null /// - public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public AzureMLWebServicesManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -227,11 +231,11 @@ public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.Ser { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -253,7 +257,7 @@ public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.Ser /// /// Thrown when a required parameter is null /// - public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public AzureMLWebServicesManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -263,11 +267,11 @@ public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.Ser { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -280,41 +284,41 @@ public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.Ser /// private void Initialize() { - this.WebServices = new WebServicesOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.ApiVersion = "2016-05-01-preview"; - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + WebServices = new WebServicesOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2017-01-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicSerializeJsonConverter("packageType")); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicDeserializeJsonConverter("packageType")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("packageType")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("packageType")); CustomInitialize(); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IAzureMLWebServicesManagementClient.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IAzureMLWebServicesManagementClient.cs index 3e2676b0b132..86bed6fbb621 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IAzureMLWebServicesManagementClient.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IAzureMLWebServicesManagementClient.cs @@ -1,24 +1,23 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using Newtonsoft.Json; /// /// These APIs allow end users to operate on Azure Machine Learning Web /// Services resources. They support the following /// operations:<ul><li>Create or update a web - /// service</li><li>Get a web - /// service</li><li>Patch a web - /// service</li><li>Delete a web + /// service</li><li>Get a web service</li><li>Patch + /// a web service</li><li>Delete a web /// service</li><li>Get All Web Services in a Resource Group /// </li><li>Get All Web Services in a /// Subscription</li><li>Get Web Services @@ -34,17 +33,17 @@ public partial interface IAzureMLWebServicesManagementClient : System.IDisposabl /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. /// - Microsoft.Rest.ServiceClientCredentials Credentials { get; } + ServiceClientCredentials Credentials { get; } /// /// The Azure subscription ID. @@ -69,8 +68,8 @@ public partial interface IAzureMLWebServicesManagementClient : System.IDisposabl int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IWebServicesOperations.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IWebServicesOperations.cs index 60a968b10d29..f7c80dd83010 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IWebServicesOperations.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IWebServicesOperations.cs @@ -1,15 +1,19 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// WebServicesOperations operations. @@ -19,9 +23,9 @@ public partial interface IWebServicesOperations /// /// Create or update a web service. This call will overwrite an /// existing web service. Note that there is no warning or - /// confirmation. This is a nonrecoverable operation. If your intent - /// is to create a new web service, call the Get operation first to - /// verify that it does not exist. + /// confirmation. This is a nonrecoverable operation. If your intent is + /// to create a new web service, call the Get operation first to verify + /// that it does not exist. /// /// /// Name of the resource group in which the web service is located. @@ -47,13 +51,12 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create or update a web service. This call will overwrite an - /// existing web service. Note that there is no warning or - /// confirmation. This is a nonrecoverable operation. If your intent - /// is to create a new web service, call the Get operation first to - /// verify that it does not exist. + /// Gets the Web Service Definition as specified by a subscription, + /// resource group, and name. Note that the storage credentials and web + /// service keys are not returned by this call. To get the web service + /// access keys, call List Keys. /// /// /// Name of the resource group in which the web service is located. @@ -61,8 +64,8 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// - /// - /// The payload that is used to create or update the web service. + /// + /// The region for which encrypted credential parameters are valid. /// /// /// The headers that will be added to request. @@ -79,12 +82,11 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the Web Service Definiton as specified by a subscription, - /// resource group, and name. Note that the storage credentials and - /// web service keys are not returned by this call. To get the web - /// service access keys, call List Keys. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed + /// successfully, you must perform a Get operation. /// /// /// Name of the resource group in which the web service is located. @@ -92,6 +94,9 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// + /// + /// The payload to use to patch the web service. + /// /// /// The headers that will be added to request. /// @@ -107,11 +112,9 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> PatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Modifies an existing web service resource. The PATCH API call is - /// an asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Deletes the specified web service. /// /// /// Name of the resource group in which the web service is located. @@ -119,9 +122,6 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. - /// /// /// The headers that will be added to request. /// @@ -131,17 +131,18 @@ public partial interface IWebServicesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> PatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task RemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Modifies an existing web service resource. The PATCH API call is - /// an asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Creates an encrypted credentials parameter blob for the specified + /// region. To get the web service from a region other than the region + /// in which it has been created, you must first call Create Regional + /// Web Services Properties to create a copy of the encrypted + /// credential parameter blob in that region. You only need to do this + /// before the first time that you get the web service in the new + /// region. /// /// /// Name of the resource group in which the web service is located. @@ -149,8 +150,8 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. + /// + /// The region for which encrypted credential parameters are created. /// /// /// The headers that will be added to request. @@ -167,9 +168,9 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateRegionalPropertiesWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes the specified web service. + /// Gets the access keys for the specified web service. /// /// /// Name of the resource group in which the web service is located. @@ -186,18 +187,21 @@ public partial interface IWebServicesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task RemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes the specified web service. + /// Gets the web services in the specified resource group. /// /// /// Name of the resource group in which the web service is located. /// - /// - /// The name of the web service. + /// + /// Continuation token for pagination. /// /// /// The headers that will be added to request. @@ -208,12 +212,41 @@ public partial interface IWebServicesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginRemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the access keys for the specified web service. + /// Gets the web services in the specified subscription. + /// + /// + /// Continuation token for pagination. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionIdWithHttpMessagesAsync(string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a web service. This call will overwrite an + /// existing web service. Note that there is no warning or + /// confirmation. This is a nonrecoverable operation. If your intent is + /// to create a new web service, call the Get operation first to verify + /// that it does not exist. /// /// /// Name of the resource group in which the web service is located. @@ -221,6 +254,9 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// + /// + /// The payload that is used to create or update the web service. + /// /// /// The headers that will be added to request. /// @@ -236,15 +272,20 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the web services in the specified resource group. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed + /// successfully, you must perform a Get operation. /// /// /// Name of the resource group in which the web service is located. /// - /// - /// Continuation token for pagination. + /// + /// The name of the web service. + /// + /// + /// The payload to use to patch the web service. /// /// /// The headers that will be added to request. @@ -261,12 +302,46 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the web services in the specified subscription. + /// Deletes the specified web service. /// - /// - /// Continuation token for pagination. + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginRemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates an encrypted credentials parameter blob for the specified + /// region. To get the web service from a region other than the region + /// in which it has been created, you must first call Create Regional + /// Web Services Properties to create a copy of the encrypted + /// credential parameter blob in that region. You only need to do this + /// before the first time that you get the web service in the new + /// region. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. /// /// /// The headers that will be added to request. @@ -283,7 +358,7 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginCreateRegionalPropertiesWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the web services in the specified resource group. /// @@ -305,7 +380,7 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the web services in the specified subscription. /// @@ -327,6 +402,6 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListBySubscriptionIdNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetItem.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetItem.cs index 8a9c9a0f04a2..57150943b626 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetItem.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetItem.cs @@ -1,13 +1,17 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,14 +22,17 @@ public partial class AssetItem /// /// Initializes a new instance of the AssetItem class. /// - public AssetItem() { } + public AssetItem() + { + CustomInit(); + } /// /// Initializes a new instance of the AssetItem class. /// /// Asset's friendly name. - /// Asset's type. Possible values include: - /// 'Module', 'Resource' + /// Asset's type. Possible values include: 'Module', + /// 'Resource' /// Access information for the /// asset. /// Asset's Id. @@ -37,7 +44,7 @@ public AssetItem() { } /// the module's metadata. /// If the asset is a custom module, this /// holds the module's parameters. - public AssetItem(string name, string type, AssetLocation locationInfo, string id = default(string), System.Collections.Generic.IDictionary inputPorts = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary outputPorts = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary metadata = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList parameters = default(System.Collections.Generic.IList)) + public AssetItem(string name, string type, BlobLocation locationInfo, string id = default(string), IDictionary inputPorts = default(IDictionary), IDictionary outputPorts = default(IDictionary), IDictionary metadata = default(IDictionary), IList parameters = default(IList)) { Name = name; Id = id; @@ -47,82 +54,88 @@ public AssetItem() { } OutputPorts = outputPorts; Metadata = metadata; Parameters = parameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets asset's friendly name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets asset's Id. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Gets or sets asset's type. Possible values include: 'Module', /// 'Resource' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets access information for the asset. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "locationInfo")] - public AssetLocation LocationInfo { get; set; } + [JsonProperty(PropertyName = "locationInfo")] + public BlobLocation LocationInfo { get; set; } /// /// Gets or sets information about the asset's input ports. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "inputPorts")] - public System.Collections.Generic.IDictionary InputPorts { get; set; } + [JsonProperty(PropertyName = "inputPorts")] + public IDictionary InputPorts { get; set; } /// /// Gets or sets information about the asset's output ports. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "outputPorts")] - public System.Collections.Generic.IDictionary OutputPorts { get; set; } + [JsonProperty(PropertyName = "outputPorts")] + public IDictionary OutputPorts { get; set; } /// /// Gets or sets if the asset is a custom module, this holds the /// module's metadata. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "metadata")] - public System.Collections.Generic.IDictionary Metadata { get; set; } + [JsonProperty(PropertyName = "metadata")] + public IDictionary Metadata { get; set; } /// /// Gets or sets if the asset is a custom module, this holds the /// module's parameters. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] - public System.Collections.Generic.IList Parameters { get; set; } + [JsonProperty(PropertyName = "parameters")] + public IList Parameters { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } if (LocationInfo == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "LocationInfo"); + throw new ValidationException(ValidationRules.CannotBeNull, "LocationInfo"); } - if (this.LocationInfo != null) + if (LocationInfo != null) { - this.LocationInfo.Validate(); + LocationInfo.Validate(); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetLocation.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetLocation.cs deleted file mode 100644 index 705e9ced8a31..000000000000 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetLocation.cs +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models -{ - using System.Linq; - - /// - /// Describes the access location for a web service asset. - /// - public partial class AssetLocation - { - /// - /// Initializes a new instance of the AssetLocation class. - /// - public AssetLocation() { } - - /// - /// Initializes a new instance of the AssetLocation class. - /// - /// The URI where the asset is accessible from, - /// (e.g. aml://abc for system assets or https://xyz for user - /// asets - /// Access credentials for the asset, if - /// applicable (e.g. asset specified by storage account connection - /// string + blob URI) - public AssetLocation(string uri, string credentials = default(string)) - { - Uri = uri; - Credentials = credentials; - } - - /// - /// Gets or sets the URI where the asset is accessible from, (e.g. - /// aml://abc for system assets or https://xyz for user asets - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "uri")] - public string Uri { get; set; } - - /// - /// Gets or sets access credentials for the asset, if applicable (e.g. - /// asset specified by storage account connection string + blob URI) - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "credentials")] - public string Credentials { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Uri == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Uri"); - } - } - } -} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetType.cs index 794943b6d76f..22b3736a9325 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetType.cs @@ -1,13 +1,13 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for AssetType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationErrorInfo.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationErrorInfo.cs new file mode 100644 index 000000000000..af099828f123 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationErrorInfo.cs @@ -0,0 +1,76 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The error detail information for async operation + /// + public partial class AsyncOperationErrorInfo + { + /// + /// Initializes a new instance of the AsyncOperationErrorInfo class. + /// + public AsyncOperationErrorInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AsyncOperationErrorInfo class. + /// + /// The error code. + /// The error target. + /// The error message. + /// An array containing error + /// information. + public AsyncOperationErrorInfo(string code = default(string), string target = default(string), string message = default(string), IList details = default(IList)) + { + Code = code; + Target = target; + Message = message; + Details = details; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// Gets or sets the error target. + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; set; } + + /// + /// Gets or sets the error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + /// + /// Gets or sets an array containing error information. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; set; } + + } +} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationStatus.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationStatus.cs new file mode 100644 index 000000000000..4a268f847399 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationStatus.cs @@ -0,0 +1,106 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Azure async operation status. + /// + public partial class AsyncOperationStatus + { + /// + /// Initializes a new instance of the AsyncOperationStatus class. + /// + public AsyncOperationStatus() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AsyncOperationStatus class. + /// + /// Async operation id. + /// Async operation name. + /// Read Only: The provisioning state + /// of the web service. Valid values are Unknown, Provisioning, + /// Succeeded, and Failed. Possible values include: 'Unknown', + /// 'Provisioning', 'Succeeded', 'Failed' + /// The date time that the async operation + /// started. + /// The date time that the async operation + /// finished. + /// Async operation progress. + /// If the async operation fails, this + /// structure contains the error details. + public AsyncOperationStatus(string id = default(string), string name = default(string), string provisioningState = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), double? percentComplete = default(double?), AsyncOperationErrorInfo errorInfo = default(AsyncOperationErrorInfo)) + { + Id = id; + Name = name; + ProvisioningState = provisioningState; + StartTime = startTime; + EndTime = endTime; + PercentComplete = percentComplete; + ErrorInfo = errorInfo; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets async operation id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets async operation name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets read Only: The provisioning state of the web service. Valid + /// values are Unknown, Provisioning, Succeeded, and Failed. Possible + /// values include: 'Unknown', 'Provisioning', 'Succeeded', 'Failed' + /// + [JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets the date time that the async operation started. + /// + [JsonProperty(PropertyName = "startTime")] + public System.DateTime? StartTime { get; private set; } + + /// + /// Gets the date time that the async operation finished. + /// + [JsonProperty(PropertyName = "endTime")] + public System.DateTime? EndTime { get; private set; } + + /// + /// Gets or sets async operation progress. + /// + [JsonProperty(PropertyName = "percentComplete")] + public double? PercentComplete { get; set; } + + /// + /// Gets or sets if the async operation fails, this structure contains + /// the error details. + /// + [JsonProperty(PropertyName = "errorInfo")] + public AsyncOperationErrorInfo ErrorInfo { get; set; } + + } +} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/BlobLocation.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/BlobLocation.cs new file mode 100644 index 000000000000..0db14597bb0c --- /dev/null +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/BlobLocation.cs @@ -0,0 +1,78 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes the access location for a blob. + /// + public partial class BlobLocation + { + /// + /// Initializes a new instance of the BlobLocation class. + /// + public BlobLocation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BlobLocation class. + /// + /// The URI from which the blob is accessible from. + /// For example, aml://abc for system assets or https://xyz for user + /// assets or payload. + /// Access credentials for the blob, if + /// applicable (e.g. blob specified by storage account connection + /// string + blob URI) + public BlobLocation(string uri, string credentials = default(string)) + { + Uri = uri; + Credentials = credentials; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the URI from which the blob is accessible from. For + /// example, aml://abc for system assets or https://xyz for user assets + /// or payload. + /// + [JsonProperty(PropertyName = "uri")] + public string Uri { get; set; } + + /// + /// Gets or sets access credentials for the blob, if applicable (e.g. + /// blob specified by storage account connection string + blob URI) + /// + [JsonProperty(PropertyName = "credentials")] + public string Credentials { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Uri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Uri"); + } + } + } +} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnFormat.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnFormat.cs index 784d9170b756..1b0375302ad5 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnFormat.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnFormat.cs @@ -1,13 +1,13 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for ColumnFormat. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnSpecification.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnSpecification.cs index 6d55aed6ad76..ce020e2c147e 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnSpecification.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnSpecification.cs @@ -1,13 +1,17 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -20,7 +24,10 @@ public partial class ColumnSpecification /// /// Initializes a new instance of the ColumnSpecification class. /// - public ColumnSpecification() { } + public ColumnSpecification() + { + CustomInit(); + } /// /// Initializes a new instance of the ColumnSpecification class. @@ -29,9 +36,9 @@ public ColumnSpecification() { } /// include: 'Boolean', 'Integer', 'Number', 'String' /// Additional format information for the data /// type. Possible values include: 'Byte', 'Char', 'Complex64', - /// 'Complex128', 'Date-time', 'Date-timeOffset', 'Double', - /// 'Duration', 'Float', 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', - /// 'Uint16', 'Uint32', 'Uint64' + /// 'Complex128', 'Date-time', 'Date-timeOffset', 'Double', 'Duration', + /// 'Float', 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', 'Uint16', + /// 'Uint32', 'Uint64' /// If the data type is categorical, this /// provides the list of accepted categories. /// Flag indicating if the type supports @@ -39,64 +46,70 @@ public ColumnSpecification() { } /// Flag indicating whether the categories /// are treated as an ordered set or not, if this is a categorical /// column. - public ColumnSpecification(string type, string format = default(string), System.Collections.Generic.IList enumProperty = default(System.Collections.Generic.IList), bool? xMsIsnullable = default(bool?), bool? xMsIsordered = default(bool?)) + public ColumnSpecification(string type, string format = default(string), IList enumProperty = default(IList), bool? xMsIsnullable = default(bool?), bool? xMsIsordered = default(bool?)) { Type = type; Format = format; EnumProperty = enumProperty; XMsIsnullable = xMsIsnullable; XMsIsordered = xMsIsordered; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets data type of the column. Possible values include: /// 'Boolean', 'Integer', 'Number', 'String' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets additional format information for the data type. - /// Possible values include: 'Byte', 'Char', 'Complex64', - /// 'Complex128', 'Date-time', 'Date-timeOffset', 'Double', - /// 'Duration', 'Float', 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', - /// 'Uint16', 'Uint32', 'Uint64' + /// Possible values include: 'Byte', 'Char', 'Complex64', 'Complex128', + /// 'Date-time', 'Date-timeOffset', 'Double', 'Duration', 'Float', + /// 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', 'Uint16', 'Uint32', + /// 'Uint64' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "format")] + [JsonProperty(PropertyName = "format")] public string Format { get; set; } /// /// Gets or sets if the data type is categorical, this provides the /// list of accepted categories. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "enum")] - public System.Collections.Generic.IList EnumProperty { get; set; } + [JsonProperty(PropertyName = "enum")] + public IList EnumProperty { get; set; } /// /// Gets or sets flag indicating if the type supports null values or /// not. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "x-ms-isnullable")] + [JsonProperty(PropertyName = "x-ms-isnullable")] public bool? XMsIsnullable { get; set; } /// /// Gets or sets flag indicating whether the categories are treated as /// an ordered set or not, if this is a categorical column. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "x-ms-isordered")] + [JsonProperty(PropertyName = "x-ms-isordered")] public bool? XMsIsordered { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnType.cs index db758ca7f748..f8d47e9e0a5d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnType.cs @@ -1,13 +1,13 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for ColumnType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/CommitmentPlan.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/CommitmentPlan.cs index 6f77bab26718..ce496069f342 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/CommitmentPlan.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/CommitmentPlan.cs @@ -1,13 +1,15 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +21,10 @@ public partial class CommitmentPlan /// /// Initializes a new instance of the CommitmentPlan class. /// - public CommitmentPlan() { } + public CommitmentPlan() + { + CustomInit(); + } /// /// Initializes a new instance of the CommitmentPlan class. @@ -29,26 +34,32 @@ public CommitmentPlan() { } public CommitmentPlan(string id) { Id = id; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the Azure Resource Manager ID of the /// commitment plan associated with the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Id == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Id"); + throw new ValidationException(ValidationRules.CannotBeNull, "Id"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsConfiguration.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsConfiguration.cs index bf3f0e823f3d..1da135a7b2cf 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsConfiguration.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsConfiguration.cs @@ -1,13 +1,15 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -18,16 +20,18 @@ public partial class DiagnosticsConfiguration /// /// Initializes a new instance of the DiagnosticsConfiguration class. /// - public DiagnosticsConfiguration() { } + public DiagnosticsConfiguration() + { + CustomInit(); + } /// /// Initializes a new instance of the DiagnosticsConfiguration class. /// /// Specifies the verbosity of the diagnostic - /// output. Valid values are: None - disables tracing; Error - - /// collects only error (stderr) traces; All - collects all traces - /// (stdout and stderr). Possible values include: 'None', 'Error', - /// 'All' + /// output. Valid values are: None - disables tracing; Error - collects + /// only error (stderr) traces; All - collects all traces (stdout and + /// stderr). Possible values include: 'None', 'Error', 'All' /// Specifies the date and time when the logging /// will cease. If null, diagnostic collection is not time /// limited. @@ -35,35 +39,41 @@ public DiagnosticsConfiguration() { } { Level = level; Expiry = expiry; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the verbosity of the diagnostic output. /// Valid values are: None - disables tracing; Error - collects only /// error (stderr) traces; All - collects all traces (stdout and /// stderr). Possible values include: 'None', 'Error', 'All' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "level")] + [JsonProperty(PropertyName = "level")] public string Level { get; set; } /// /// Gets or sets specifies the date and time when the logging will /// cease. If null, diagnostic collection is not time limited. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "expiry")] + [JsonProperty(PropertyName = "expiry")] public System.DateTime? Expiry { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Level == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Level"); + throw new ValidationException(ValidationRules.CannotBeNull, "Level"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsLevel.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsLevel.cs index e161c88fb502..f22377f4647d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsLevel.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsLevel.cs @@ -1,13 +1,13 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for DiagnosticsLevel. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ExampleRequest.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ExampleRequest.cs index e2596e1f984e..908cd5b3bb0c 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ExampleRequest.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ExampleRequest.cs @@ -1,13 +1,16 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class ExampleRequest /// /// Initializes a new instance of the ExampleRequest class. /// - public ExampleRequest() { } + public ExampleRequest() + { + CustomInit(); + } /// /// Initializes a new instance of the ExampleRequest class. @@ -28,25 +34,31 @@ public ExampleRequest() { } /// map. /// Sample input data for the web /// service's global parameters - public ExampleRequest(System.Collections.Generic.IDictionary>> inputs = default(System.Collections.Generic.IDictionary>>), System.Collections.Generic.IDictionary globalParameters = default(System.Collections.Generic.IDictionary)) + public ExampleRequest(IDictionary>> inputs = default(IDictionary>>), IDictionary globalParameters = default(IDictionary)) { Inputs = inputs; GlobalParameters = globalParameters; + CustomInit(); } /// - /// Gets or sets sample input data for the web service's input(s) - /// given as an input name to sample input values matrix map. + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets sample input data for the web service's input(s) given + /// as an input name to sample input values matrix map. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "inputs")] - public System.Collections.Generic.IDictionary>> Inputs { get; set; } + [JsonProperty(PropertyName = "inputs")] + public IDictionary>> Inputs { get; set; } /// /// Gets or sets sample input data for the web service's global /// parameters /// - [Newtonsoft.Json.JsonProperty(PropertyName = "globalParameters")] - public System.Collections.Generic.IDictionary GlobalParameters { get; set; } + [JsonProperty(PropertyName = "globalParameters")] + public IDictionary GlobalParameters { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphEdge.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphEdge.cs index 53372439721d..f040a7d8d11d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphEdge.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphEdge.cs @@ -1,13 +1,14 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,51 +19,60 @@ public partial class GraphEdge /// /// Initializes a new instance of the GraphEdge class. /// - public GraphEdge() { } + public GraphEdge() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphEdge class. /// /// The source graph node's /// identifier. - /// The identifier of the source node's - /// port that the edge connects from. + /// The identifier of the source node's port + /// that the edge connects from. /// The destination graph node's /// identifier. - /// The identifier of the destination - /// node's port that the edge connects into. + /// The identifier of the destination node's + /// port that the edge connects into. public GraphEdge(string sourceNodeId = default(string), string sourcePortId = default(string), string targetNodeId = default(string), string targetPortId = default(string)) { SourceNodeId = sourceNodeId; SourcePortId = sourcePortId; TargetNodeId = targetNodeId; TargetPortId = targetPortId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the source graph node's identifier. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sourceNodeId")] + [JsonProperty(PropertyName = "sourceNodeId")] public string SourceNodeId { get; set; } /// - /// Gets or sets the identifier of the source node's port that the - /// edge connects from. + /// Gets or sets the identifier of the source node's port that the edge + /// connects from. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sourcePortId")] + [JsonProperty(PropertyName = "sourcePortId")] public string SourcePortId { get; set; } /// /// Gets or sets the destination graph node's identifier. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "targetNodeId")] + [JsonProperty(PropertyName = "targetNodeId")] public string TargetNodeId { get; set; } /// - /// Gets or sets the identifier of the destination node's port that - /// the edge connects into. + /// Gets or sets the identifier of the destination node's port that the + /// edge connects into. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "targetPortId")] + [JsonProperty(PropertyName = "targetPortId")] public string TargetPortId { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphNode.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphNode.cs index 6774d024118a..d4ed58fb9152 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphNode.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphNode.cs @@ -1,13 +1,16 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -20,7 +23,10 @@ public partial class GraphNode /// /// Initializes a new instance of the GraphNode class. /// - public GraphNode() { } + public GraphNode() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphNode class. @@ -34,38 +40,44 @@ public GraphNode() { } /// If applicable, parameters of the node. /// Global graph parameters map into these, with values set at /// runtime. - public GraphNode(string assetId = default(string), string inputId = default(string), string outputId = default(string), System.Collections.Generic.IDictionary parameters = default(System.Collections.Generic.IDictionary)) + public GraphNode(string assetId = default(string), string inputId = default(string), string outputId = default(string), IDictionary parameters = default(IDictionary)) { AssetId = assetId; InputId = inputId; OutputId = outputId; Parameters = parameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the id of the asset represented by this node. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "assetId")] + [JsonProperty(PropertyName = "assetId")] public string AssetId { get; set; } /// /// Gets or sets the id of the input element represented by this node. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "inputId")] + [JsonProperty(PropertyName = "inputId")] public string InputId { get; set; } /// /// Gets or sets the id of the output element represented by this node. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "outputId")] + [JsonProperty(PropertyName = "outputId")] public string OutputId { get; set; } /// /// Gets or sets if applicable, parameters of the node. Global graph /// parameters map into these, with values set at runtime. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] - public System.Collections.Generic.IDictionary Parameters { get; set; } + [JsonProperty(PropertyName = "parameters")] + public IDictionary Parameters { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphPackage.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphPackage.cs index b64d9278cf60..71722811f013 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphPackage.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphPackage.cs @@ -1,13 +1,16 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class GraphPackage /// /// Initializes a new instance of the GraphPackage class. /// - public GraphPackage() { } + public GraphPackage() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphPackage class. @@ -28,28 +34,33 @@ public GraphPackage() { } /// The list of edges making up the graph. /// The collection of global parameters /// for the graph, given as a global parameter name to GraphParameter - /// map. Each parameter here has a 1:1 match with the global - /// parameters values map declared at the WebServiceProperties - /// level. - public GraphPackage(System.Collections.Generic.IDictionary nodes = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList edges = default(System.Collections.Generic.IList), System.Collections.Generic.IDictionary graphParameters = default(System.Collections.Generic.IDictionary)) + /// map. Each parameter here has a 1:1 match with the global parameters + /// values map declared at the WebServiceProperties level. + public GraphPackage(IDictionary nodes = default(IDictionary), IList edges = default(IList), IDictionary graphParameters = default(IDictionary)) { Nodes = nodes; Edges = edges; GraphParameters = graphParameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the set of nodes making up the graph, provided as a /// nodeId to GraphNode map /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nodes")] - public System.Collections.Generic.IDictionary Nodes { get; set; } + [JsonProperty(PropertyName = "nodes")] + public IDictionary Nodes { get; set; } /// /// Gets or sets the list of edges making up the graph. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "edges")] - public System.Collections.Generic.IList Edges { get; set; } + [JsonProperty(PropertyName = "edges")] + public IList Edges { get; set; } /// /// Gets or sets the collection of global parameters for the graph, @@ -57,8 +68,8 @@ public GraphPackage() { } /// parameter here has a 1:1 match with the global parameters values /// map declared at the WebServiceProperties level. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "graphParameters")] - public System.Collections.Generic.IDictionary GraphParameters { get; set; } + [JsonProperty(PropertyName = "graphParameters")] + public IDictionary GraphParameters { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameter.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameter.cs index 8ede8de22609..d6c098841611 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameter.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameter.cs @@ -1,13 +1,17 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,30 +22,39 @@ public partial class GraphParameter /// /// Initializes a new instance of the GraphParameter class. /// - public GraphParameter() { } + public GraphParameter() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphParameter class. /// - /// Graph parameter's type. Possible values - /// include: 'String', 'Int', 'Float', 'Enumerated', 'Script', - /// 'Mode', 'Credential', 'Boolean', 'Double', 'ColumnPicker', + /// Graph parameter's type. Possible values include: + /// 'String', 'Int', 'Float', 'Enumerated', 'Script', 'Mode', + /// 'Credential', 'Boolean', 'Double', 'ColumnPicker', /// 'ParameterRange', 'DataGatewayName' /// Association links for this parameter to nodes /// in the graph. /// Description of this graph /// parameter. - public GraphParameter(string type, System.Collections.Generic.IList links, string description = default(string)) + public GraphParameter(string type, IList links, string description = default(string)) { Description = description; Type = type; Links = links; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets description of this graph parameter. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// @@ -50,35 +63,35 @@ public GraphParameter() { } /// 'Credential', 'Boolean', 'Double', 'ColumnPicker', /// 'ParameterRange', 'DataGatewayName' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets association links for this parameter to nodes in the /// graph. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "links")] - public System.Collections.Generic.IList Links { get; set; } + [JsonProperty(PropertyName = "links")] + public IList Links { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } if (Links == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Links"); + throw new ValidationException(ValidationRules.CannotBeNull, "Links"); } - if (this.Links != null) + if (Links != null) { - foreach (var element in this.Links) + foreach (var element in Links) { if (element != null) { diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameterLink.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameterLink.cs index 0eeadff8ecea..3827df6fc49d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameterLink.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameterLink.cs @@ -1,13 +1,15 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +20,10 @@ public partial class GraphParameterLink /// /// Initializes a new instance of the GraphParameterLink class. /// - public GraphParameterLink() { } + public GraphParameterLink() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphParameterLink class. @@ -30,36 +35,42 @@ public GraphParameterLink(string nodeId, string parameterKey) { NodeId = nodeId; ParameterKey = parameterKey; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the graph node's identifier /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nodeId")] + [JsonProperty(PropertyName = "nodeId")] public string NodeId { get; set; } /// /// Gets or sets the identifier of the node parameter that the global /// parameter maps to. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameterKey")] + [JsonProperty(PropertyName = "parameterKey")] public string ParameterKey { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (NodeId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "NodeId"); + throw new ValidationException(ValidationRules.CannotBeNull, "NodeId"); } if (ParameterKey == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ParameterKey"); + throw new ValidationException(ValidationRules.CannotBeNull, "ParameterKey"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPort.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPort.cs index 256384e18f69..d5c42f5dea37 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPort.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPort.cs @@ -1,13 +1,14 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +19,10 @@ public partial class InputPort /// /// Initializes a new instance of the InputPort class. /// - public InputPort() { } + public InputPort() + { + CustomInit(); + } /// /// Initializes a new instance of the InputPort class. @@ -28,12 +32,18 @@ public InputPort() { } public InputPort(string type = default(string)) { Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets port data type. Possible values include: 'Dataset' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPortType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPortType.cs index 433879d4c10a..cbdbff530fd4 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPortType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPortType.cs @@ -1,13 +1,13 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for InputPortType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/MachineLearningWorkspace.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/MachineLearningWorkspace.cs index 109aa1d320fe..303e70af525f 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/MachineLearningWorkspace.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/MachineLearningWorkspace.cs @@ -1,13 +1,15 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -19,36 +21,45 @@ public partial class MachineLearningWorkspace /// /// Initializes a new instance of the MachineLearningWorkspace class. /// - public MachineLearningWorkspace() { } + public MachineLearningWorkspace() + { + CustomInit(); + } /// /// Initializes a new instance of the MachineLearningWorkspace class. /// - /// Specifies the workspace ID of the machine - /// learning workspace associated with the web service + /// Specifies the workspace ID of the machine learning + /// workspace associated with the web service public MachineLearningWorkspace(string id) { Id = id; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the workspace ID of the machine learning /// workspace associated with the web service /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Id == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Id"); + throw new ValidationException(ValidationRules.CannotBeNull, "Id"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModeValueInfo.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModeValueInfo.cs index 26378aa304c3..081d3d19de62 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModeValueInfo.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModeValueInfo.cs @@ -1,13 +1,16 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class ModeValueInfo /// /// Initializes a new instance of the ModeValueInfo class. /// - public ModeValueInfo() { } + public ModeValueInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the ModeValueInfo class. @@ -26,23 +32,29 @@ public ModeValueInfo() { } /// The interface string name for the /// nested parameter. /// The definition of the parameter. - public ModeValueInfo(string interfaceString = default(string), System.Collections.Generic.IList parameters = default(System.Collections.Generic.IList)) + public ModeValueInfo(string interfaceString = default(string), IList parameters = default(IList)) { InterfaceString = interfaceString; Parameters = parameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the interface string name for the nested parameter. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "interfaceString")] + [JsonProperty(PropertyName = "interfaceString")] public string InterfaceString { get; set; } /// /// Gets or sets the definition of the parameter. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] - public System.Collections.Generic.IList Parameters { get; set; } + [JsonProperty(PropertyName = "parameters")] + public IList Parameters { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModuleAssetParameter.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModuleAssetParameter.cs index 6d6ca92d0b4d..f9a4a3875e63 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModuleAssetParameter.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModuleAssetParameter.cs @@ -1,13 +1,16 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class ModuleAssetParameter /// /// Initializes a new instance of the ModuleAssetParameter class. /// - public ModuleAssetParameter() { } + public ModuleAssetParameter() + { + CustomInit(); + } /// /// Initializes a new instance of the ModuleAssetParameter class. @@ -27,31 +33,37 @@ public ModuleAssetParameter() { } /// Parameter type. /// Definitions for nested interface /// parameters if this is a complex module parameter. - public ModuleAssetParameter(string name = default(string), string parameterType = default(string), System.Collections.Generic.IDictionary modeValuesInfo = default(System.Collections.Generic.IDictionary)) + public ModuleAssetParameter(string name = default(string), string parameterType = default(string), IDictionary modeValuesInfo = default(IDictionary)) { Name = name; ParameterType = parameterType; ModeValuesInfo = modeValuesInfo; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets parameter name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets parameter type. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameterType")] + [JsonProperty(PropertyName = "parameterType")] public string ParameterType { get; set; } /// - /// Gets or sets definitions for nested interface parameters if this - /// is a complex module parameter. + /// Gets or sets definitions for nested interface parameters if this is + /// a complex module parameter. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "modeValuesInfo")] - public System.Collections.Generic.IDictionary ModeValuesInfo { get; set; } + [JsonProperty(PropertyName = "modeValuesInfo")] + public IDictionary ModeValuesInfo { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPort.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPort.cs index d6daccaf4213..35beacb2053a 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPort.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPort.cs @@ -1,13 +1,14 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +19,10 @@ public partial class OutputPort /// /// Initializes a new instance of the OutputPort class. /// - public OutputPort() { } + public OutputPort() + { + CustomInit(); + } /// /// Initializes a new instance of the OutputPort class. @@ -28,12 +32,18 @@ public OutputPort() { } public OutputPort(string type = default(string)) { Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets port data type. Possible values include: 'Dataset' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPortType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPortType.cs index c84e55387702..aa06b4c27444 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPortType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPortType.cs @@ -1,13 +1,13 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for OutputPortType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Page.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Page.cs index 14631fc17aab..59eadd37557f 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Page.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Page.cs @@ -1,44 +1,49 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("nextLink")] - public System.String NextPageLink { get; private set; } + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ParameterType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ParameterType.cs index 07e9643050e8..004c0cdb1e58 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ParameterType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ParameterType.cs @@ -1,13 +1,13 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for ParameterType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ProvisioningState.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ProvisioningState.cs index edf4d24292d3..144a6fe04df4 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ProvisioningState.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ProvisioningState.cs @@ -1,13 +1,13 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for ProvisioningState. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/RealtimeConfiguration.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/RealtimeConfiguration.cs index 30ba253d22c1..7b095d537b75 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/RealtimeConfiguration.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/RealtimeConfiguration.cs @@ -1,13 +1,15 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +21,10 @@ public partial class RealtimeConfiguration /// /// Initializes a new instance of the RealtimeConfiguration class. /// - public RealtimeConfiguration() { } + public RealtimeConfiguration() + { + CustomInit(); + } /// /// Initializes a new instance of the RealtimeConfiguration class. @@ -30,30 +35,36 @@ public RealtimeConfiguration() { } public RealtimeConfiguration(int? maxConcurrentCalls = default(int?)) { MaxConcurrentCalls = maxConcurrentCalls; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the maximum concurrent calls that can be /// made to the web service. Minimum value: 4, Maximum value: 200. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "maxConcurrentCalls")] + [JsonProperty(PropertyName = "maxConcurrentCalls")] public int? MaxConcurrentCalls { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.MaxConcurrentCalls > 200) + if (MaxConcurrentCalls > 200) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMaximum, "MaxConcurrentCalls", 200); + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxConcurrentCalls", 200); } - if (this.MaxConcurrentCalls < 4) + if (MaxConcurrentCalls < 4) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMinimum, "MaxConcurrentCalls", 4); + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxConcurrentCalls", 4); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Resource.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Resource.cs index 05a03e85be0b..892032cfa24d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Resource.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Resource.cs @@ -1,21 +1,32 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; - public partial class Resource : Microsoft.Rest.Azure.IResource + /// + /// Azure resource. + /// + public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. @@ -27,56 +38,62 @@ public Resource() { } /// Specifies the type of the resource. /// Contains resource tags defined as key/value /// pairs. - public Resource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; Location = location; Type = type; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets specifies the resource ID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; private set; } /// - /// Gets or sets specifies the name of the resource. + /// Gets specifies the name of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } /// /// Gets or sets specifies the location of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// /// Gets specifies the type of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; private set; } /// /// Gets or sets contains resource tags defined as key/value pairs. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Location == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ServiceInputOutputSpecification.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ServiceInputOutputSpecification.cs index f0b3e2d9af1b..96a77fdaf876 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ServiceInputOutputSpecification.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ServiceInputOutputSpecification.cs @@ -1,13 +1,17 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -20,7 +24,10 @@ public partial class ServiceInputOutputSpecification /// Initializes a new instance of the ServiceInputOutputSpecification /// class. /// - public ServiceInputOutputSpecification() { } + public ServiceInputOutputSpecification() + { + CustomInit(); + } /// /// Initializes a new instance of the ServiceInputOutputSpecification @@ -29,65 +36,71 @@ public ServiceInputOutputSpecification() { } /// The type of the entity described in swagger. /// Always 'object'. /// Specifies a collection that contains the - /// column schema for each input or output of the web service. For - /// more information, see the Swagger specification. + /// column schema for each input or output of the web service. For more + /// information, see the Swagger specification. /// The title of your Swagger schema. /// The description of the Swagger /// schema. - public ServiceInputOutputSpecification(string type, System.Collections.Generic.IDictionary properties, string title = default(string), string description = default(string)) + public ServiceInputOutputSpecification(string type, IDictionary properties, string title = default(string), string description = default(string)) { Title = title; Description = description; Type = type; Properties = properties; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the title of your Swagger schema. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "title")] + [JsonProperty(PropertyName = "title")] public string Title { get; set; } /// /// Gets or sets the description of the Swagger schema. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// Gets or sets the type of the entity described in swagger. Always /// 'object'. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// - /// Gets or sets specifies a collection that contains the column - /// schema for each input or output of the web service. For more - /// information, see the Swagger specification. + /// Gets or sets specifies a collection that contains the column schema + /// for each input or output of the web service. For more information, + /// see the Swagger specification. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] - public System.Collections.Generic.IDictionary Properties { get; set; } + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } if (Properties == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Properties"); + throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); } - if (this.Properties != null) + if (Properties != null) { - foreach (var valueElement in this.Properties.Values) + foreach (var valueElement in Properties.Values) { if (valueElement != null) { diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/StorageAccount.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/StorageAccount.cs index 712380b47564..6bbe4e0e7ee9 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/StorageAccount.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/StorageAccount.cs @@ -1,13 +1,14 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +19,10 @@ public partial class StorageAccount /// /// Initializes a new instance of the StorageAccount class. /// - public StorageAccount() { } + public StorageAccount() + { + CustomInit(); + } /// /// Initializes a new instance of the StorageAccount class. @@ -31,18 +35,24 @@ public StorageAccount() { } { Name = name; Key = key; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the name of the storage account. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets specifies the key used to access the storage account. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "key")] + [JsonProperty(PropertyName = "key")] public string Key { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/TableSpecification.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/TableSpecification.cs index dd9e305f38e2..5916d2486c4b 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/TableSpecification.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/TableSpecification.cs @@ -1,25 +1,32 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// The swagger 2.0 schema describing a single service input or output. - /// See Swagger specification: http://swagger.io/specification/ + /// The swagger 2.0 schema describing a single service input or output. See + /// Swagger specification: http://swagger.io/specification/ /// public partial class TableSpecification { /// /// Initializes a new instance of the TableSpecification class. /// - public TableSpecification() { } + public TableSpecification() + { + CustomInit(); + } /// /// Initializes a new instance of the TableSpecification class. @@ -31,60 +38,66 @@ public TableSpecification() { } /// The format, if 'type' is not 'object' /// The set of columns within the data /// table. - public TableSpecification(string type, string title = default(string), string description = default(string), string format = default(string), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary)) + public TableSpecification(string type, string title = default(string), string description = default(string), string format = default(string), IDictionary properties = default(IDictionary)) { Title = title; Description = description; Type = type; Format = format; Properties = properties; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets swagger schema title. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "title")] + [JsonProperty(PropertyName = "title")] public string Title { get; set; } /// /// Gets or sets swagger schema description. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// Gets or sets the type of the entity described in swagger. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets the format, if 'type' is not 'object' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "format")] + [JsonProperty(PropertyName = "format")] public string Format { get; set; } /// /// Gets or sets the set of columns within the data table. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] - public System.Collections.Generic.IDictionary Properties { get; set; } + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } - if (this.Properties != null) + if (Properties != null) { - foreach (var valueElement in this.Properties.Values) + foreach (var valueElement in Properties.Values) { if (valueElement != null) { diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebService.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebService.cs index 143ff206166b..3b6fc2453dca 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebService.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebService.cs @@ -1,13 +1,17 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +22,10 @@ public partial class WebService : Resource /// /// Initializes a new instance of the WebService class. /// - public WebService() { } + public WebService() + { + CustomInit(); + } /// /// Initializes a new instance of the WebService class. @@ -32,23 +39,29 @@ public WebService() { } /// Specifies the type of the resource. /// Contains resource tags defined as key/value /// pairs. - public WebService(string location, WebServiceProperties properties, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public WebService(string location, WebServiceProperties properties, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) : base(location, id, name, type, tags) { Properties = properties; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets contains the property payload that describes the web /// service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + [JsonProperty(PropertyName = "properties")] public WebServiceProperties Properties { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -56,11 +69,11 @@ public override void Validate() base.Validate(); if (Properties == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Properties"); + throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); } - if (this.Properties != null) + if (Properties != null) { - this.Properties.Validate(); + Properties.Validate(); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceKeys.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceKeys.cs index b6226796d12d..3a1f7e8a1edc 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceKeys.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceKeys.cs @@ -1,13 +1,14 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +19,10 @@ public partial class WebServiceKeys /// /// Initializes a new instance of the WebServiceKeys class. /// - public WebServiceKeys() { } + public WebServiceKeys() + { + CustomInit(); + } /// /// Initializes a new instance of the WebServiceKeys class. @@ -29,18 +33,24 @@ public WebServiceKeys() { } { Primary = primary; Secondary = secondary; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the primary access key. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "primary")] + [JsonProperty(PropertyName = "primary")] public string Primary { get; set; } /// /// Gets or sets the secondary access key. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "secondary")] + [JsonProperty(PropertyName = "secondary")] public string Secondary { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceParameter.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceParameter.cs new file mode 100644 index 000000000000..545c49f699da --- /dev/null +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceParameter.cs @@ -0,0 +1,60 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Web Service Parameter object for node and global parameter + /// + public partial class WebServiceParameter + { + /// + /// Initializes a new instance of the WebServiceParameter class. + /// + public WebServiceParameter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the WebServiceParameter class. + /// + /// The parameter value + /// If the parameter value in + /// 'value' field is encrypted, the thumbprint of the certificate + /// should be put here. + public WebServiceParameter(object value = default(object), string certificateThumbprint = default(string)) + { + Value = value; + CertificateThumbprint = certificateThumbprint; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the parameter value + /// + [JsonProperty(PropertyName = "value")] + public object Value { get; set; } + + /// + /// Gets or sets if the parameter value in 'value' field is encrypted, + /// the thumbprint of the certificate should be put here. + /// + [JsonProperty(PropertyName = "certificateThumbprint")] + public string CertificateThumbprint { get; set; } + + } +} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceProperties.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceProperties.cs index ad95976f42ca..197cee34c8d2 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceProperties.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceProperties.cs @@ -1,13 +1,16 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class WebServiceProperties /// /// Initializes a new instance of the WebServiceProperties class. /// - public WebServiceProperties() { } + public WebServiceProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the WebServiceProperties class. @@ -31,22 +37,22 @@ public WebServiceProperties() { } /// Read Only: The date and time when the web /// service was last modified. /// Read Only: The provision state of - /// the web service. Valid values are Unknown, Provisioning, - /// Succeeded, and Failed. Possible values include: 'Unknown', - /// 'Provisioning', 'Succeeded', 'Failed' + /// the web service. Valid values are Unknown, Provisioning, Succeeded, + /// and Failed. Possible values include: 'Unknown', 'Provisioning', + /// 'Succeeded', 'Failed' /// Contains the web service provisioning keys. If /// you do not specify provisioning keys, the Azure Machine Learning - /// system generates them for you. Note: The keys are not returned - /// from calls to GET operations. - /// When set to true, indicates that - /// the web service is read-only and can no longer be updated or - /// patched, only removed. Default, is false. Note: Once set to true, - /// you cannot change its value. + /// system generates them for you. Note: The keys are not returned from + /// calls to GET operations. + /// When set to true, indicates that the + /// web service is read-only and can no longer be updated or patched, + /// only removed. Default, is false. Note: Once set to true, you cannot + /// change its value. /// Read Only: Contains the URI of the /// swagger spec associated with this web service. /// When set to true, sample data is - /// included in the web service's swagger definition. The default - /// value is true. + /// included in the web service's swagger definition. The default value + /// is true. /// Contains the configuration /// settings for the web service endpoint. /// Settings controlling the diagnostics @@ -59,18 +65,18 @@ public WebServiceProperties() { } /// available in the new storage account or calls to your web service /// will fail. /// Specifies the Machine - /// Learning workspace containing the experiment that is source for - /// the web service. + /// Learning workspace containing the experiment that is source for the + /// web service. /// Contains the commitment plan /// associated with this web service. Set at creation time. Once set, /// this value cannot be changed. Note: The commitment plan is not /// returned from calls to GET operations. /// Contains the Swagger 2.0 schema describing one - /// or more of the web service's inputs. For more information, see - /// the Swagger specification. - /// Contains the Swagger 2.0 schema describing - /// one or more of the web service's outputs. For more information, - /// see the Swagger specification. + /// or more of the web service's inputs. For more information, see the + /// Swagger specification. + /// Contains the Swagger 2.0 schema describing one + /// or more of the web service's outputs. For more information, see the + /// Swagger specification. /// Defines sample input data for one or /// more of the service's inputs. /// Contains user defined properties describing @@ -78,9 +84,20 @@ public WebServiceProperties() { } /// pairs. /// The set of global parameters values /// defined for the web service, given as a global parameter name to - /// default value map. If no default value is specified, the - /// parameter is considered to be required. - public WebServiceProperties(string title = default(string), string description = default(string), System.DateTime? createdOn = default(System.DateTime?), System.DateTime? modifiedOn = default(System.DateTime?), string provisioningState = default(string), WebServiceKeys keys = default(WebServiceKeys), bool? readOnlyProperty = default(bool?), string swaggerLocation = default(string), bool? exposeSampleData = default(bool?), RealtimeConfiguration realtimeConfiguration = default(RealtimeConfiguration), DiagnosticsConfiguration diagnostics = default(DiagnosticsConfiguration), StorageAccount storageAccount = default(StorageAccount), MachineLearningWorkspace machineLearningWorkspace = default(MachineLearningWorkspace), CommitmentPlan commitmentPlan = default(CommitmentPlan), ServiceInputOutputSpecification input = default(ServiceInputOutputSpecification), ServiceInputOutputSpecification output = default(ServiceInputOutputSpecification), ExampleRequest exampleRequest = default(ExampleRequest), System.Collections.Generic.IDictionary assets = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary parameters = default(System.Collections.Generic.IDictionary)) + /// default value map. If no default value is specified, the parameter + /// is considered to be required. + /// When set to true, indicates + /// that the payload size is larger than 3 MB. Otherwise false. If the + /// payload size exceed 3 MB, the payload is stored in a blob and the + /// PayloadsLocation parameter contains the URI of the blob. Otherwise, + /// this will be set to false and Assets, Input, Output, Package, + /// Parameters, ExampleRequest are inline. The Payload sizes is + /// determined by adding the size of the Assets, Input, Output, + /// Package, Parameters, and the ExampleRequest. + /// The URI of the payload blob. This + /// paramater contains a value only if the payloadsInBlobStorage + /// parameter is set to true. Otherwise is set to null. + public WebServiceProperties(string title = default(string), string description = default(string), System.DateTime? createdOn = default(System.DateTime?), System.DateTime? modifiedOn = default(System.DateTime?), string provisioningState = default(string), WebServiceKeys keys = default(WebServiceKeys), bool? readOnlyProperty = default(bool?), string swaggerLocation = default(string), bool? exposeSampleData = default(bool?), RealtimeConfiguration realtimeConfiguration = default(RealtimeConfiguration), DiagnosticsConfiguration diagnostics = default(DiagnosticsConfiguration), StorageAccount storageAccount = default(StorageAccount), MachineLearningWorkspace machineLearningWorkspace = default(MachineLearningWorkspace), CommitmentPlan commitmentPlan = default(CommitmentPlan), ServiceInputOutputSpecification input = default(ServiceInputOutputSpecification), ServiceInputOutputSpecification output = default(ServiceInputOutputSpecification), ExampleRequest exampleRequest = default(ExampleRequest), IDictionary assets = default(IDictionary), IDictionary parameters = default(IDictionary), bool? payloadsInBlobStorage = default(bool?), BlobLocation payloadsLocation = default(BlobLocation)) { Title = title; Description = description; @@ -101,31 +118,39 @@ public WebServiceProperties() { } ExampleRequest = exampleRequest; Assets = assets; Parameters = parameters; + PayloadsInBlobStorage = payloadsInBlobStorage; + PayloadsLocation = payloadsLocation; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the title of the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "title")] + [JsonProperty(PropertyName = "title")] public string Title { get; set; } /// /// Gets or sets the description of the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// Gets read Only: The date and time when the web service was created. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "createdOn")] + [JsonProperty(PropertyName = "createdOn")] public System.DateTime? CreatedOn { get; private set; } /// /// Gets read Only: The date and time when the web service was last /// modified. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "modifiedOn")] + [JsonProperty(PropertyName = "modifiedOn")] public System.DateTime? ModifiedOn { get; private set; } /// @@ -133,16 +158,16 @@ public WebServiceProperties() { } /// values are Unknown, Provisioning, Succeeded, and Failed. Possible /// values include: 'Unknown', 'Provisioning', 'Succeeded', 'Failed' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "provisioningState")] + [JsonProperty(PropertyName = "provisioningState")] public string ProvisioningState { get; private set; } /// /// Gets or sets contains the web service provisioning keys. If you do /// not specify provisioning keys, the Azure Machine Learning system - /// generates them for you. Note: The keys are not returned from - /// calls to GET operations. + /// generates them for you. Note: The keys are not returned from calls + /// to GET operations. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "keys")] + [JsonProperty(PropertyName = "keys")] public WebServiceKeys Keys { get; set; } /// @@ -151,53 +176,53 @@ public WebServiceProperties() { } /// Default, is false. Note: Once set to true, you cannot change its /// value. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "readOnly")] + [JsonProperty(PropertyName = "readOnly")] public bool? ReadOnlyProperty { get; set; } /// /// Gets read Only: Contains the URI of the swagger spec associated /// with this web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "swaggerLocation")] + [JsonProperty(PropertyName = "swaggerLocation")] public string SwaggerLocation { get; private set; } /// /// Gets or sets when set to true, sample data is included in the web /// service's swagger definition. The default value is true. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "exposeSampleData")] + [JsonProperty(PropertyName = "exposeSampleData")] public bool? ExposeSampleData { get; set; } /// /// Gets or sets contains the configuration settings for the web /// service endpoint. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "realtimeConfiguration")] + [JsonProperty(PropertyName = "realtimeConfiguration")] public RealtimeConfiguration RealtimeConfiguration { get; set; } /// - /// Gets or sets settings controlling the diagnostics traces - /// collection for the web service. + /// Gets or sets settings controlling the diagnostics traces collection + /// for the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "diagnostics")] + [JsonProperty(PropertyName = "diagnostics")] public DiagnosticsConfiguration Diagnostics { get; set; } /// /// Gets or sets specifies the storage account that Azure Machine - /// Learning uses to store information about the web service. Only - /// the name of the storage account is returned from calls to GET - /// operations. When updating the storage account information, you - /// must ensure that all necessary assets are available in the new - /// storage account or calls to your web service will fail. + /// Learning uses to store information about the web service. Only the + /// name of the storage account is returned from calls to GET + /// operations. When updating the storage account information, you must + /// ensure that all necessary assets are available in the new storage + /// account or calls to your web service will fail. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "storageAccount")] + [JsonProperty(PropertyName = "storageAccount")] public StorageAccount StorageAccount { get; set; } /// /// Gets or sets specifies the Machine Learning workspace containing /// the experiment that is source for the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "machineLearningWorkspace")] + [JsonProperty(PropertyName = "machineLearningWorkspace")] public MachineLearningWorkspace MachineLearningWorkspace { get; set; } /// @@ -206,83 +231,103 @@ public WebServiceProperties() { } /// changed. Note: The commitment plan is not returned from calls to /// GET operations. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "commitmentPlan")] + [JsonProperty(PropertyName = "commitmentPlan")] public CommitmentPlan CommitmentPlan { get; set; } /// - /// Gets or sets contains the Swagger 2.0 schema describing one or - /// more of the web service's inputs. For more information, see the - /// Swagger specification. + /// Gets or sets contains the Swagger 2.0 schema describing one or more + /// of the web service's inputs. For more information, see the Swagger + /// specification. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "input")] + [JsonProperty(PropertyName = "input")] public ServiceInputOutputSpecification Input { get; set; } /// - /// Gets or sets contains the Swagger 2.0 schema describing one or - /// more of the web service's outputs. For more information, see the - /// Swagger specification. + /// Gets or sets contains the Swagger 2.0 schema describing one or more + /// of the web service's outputs. For more information, see the Swagger + /// specification. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "output")] + [JsonProperty(PropertyName = "output")] public ServiceInputOutputSpecification Output { get; set; } /// /// Gets or sets defines sample input data for one or more of the /// service's inputs. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "exampleRequest")] + [JsonProperty(PropertyName = "exampleRequest")] public ExampleRequest ExampleRequest { get; set; } /// /// Gets or sets contains user defined properties describing web /// service assets. Properties are expressed as Key/Value pairs. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "assets")] - public System.Collections.Generic.IDictionary Assets { get; set; } + [JsonProperty(PropertyName = "assets")] + public IDictionary Assets { get; set; } /// /// Gets or sets the set of global parameters values defined for the - /// web service, given as a global parameter name to default value - /// map. If no default value is specified, the parameter is - /// considered to be required. + /// web service, given as a global parameter name to default value map. + /// If no default value is specified, the parameter is considered to be + /// required. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] - public System.Collections.Generic.IDictionary Parameters { get; set; } + [JsonProperty(PropertyName = "parameters")] + public IDictionary Parameters { get; set; } + + /// + /// Gets or sets when set to true, indicates that the payload size is + /// larger than 3 MB. Otherwise false. If the payload size exceed 3 MB, + /// the payload is stored in a blob and the PayloadsLocation parameter + /// contains the URI of the blob. Otherwise, this will be set to false + /// and Assets, Input, Output, Package, Parameters, ExampleRequest are + /// inline. The Payload sizes is determined by adding the size of the + /// Assets, Input, Output, Package, Parameters, and the ExampleRequest. + /// + [JsonProperty(PropertyName = "payloadsInBlobStorage")] + public bool? PayloadsInBlobStorage { get; set; } + + /// + /// Gets or sets the URI of the payload blob. This paramater contains a + /// value only if the payloadsInBlobStorage parameter is set to true. + /// Otherwise is set to null. + /// + [JsonProperty(PropertyName = "payloadsLocation")] + public BlobLocation PayloadsLocation { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.RealtimeConfiguration != null) + if (RealtimeConfiguration != null) { - this.RealtimeConfiguration.Validate(); + RealtimeConfiguration.Validate(); } - if (this.Diagnostics != null) + if (Diagnostics != null) { - this.Diagnostics.Validate(); + Diagnostics.Validate(); } - if (this.MachineLearningWorkspace != null) + if (MachineLearningWorkspace != null) { - this.MachineLearningWorkspace.Validate(); + MachineLearningWorkspace.Validate(); } - if (this.CommitmentPlan != null) + if (CommitmentPlan != null) { - this.CommitmentPlan.Validate(); + CommitmentPlan.Validate(); } - if (this.Input != null) + if (Input != null) { - this.Input.Validate(); + Input.Validate(); } - if (this.Output != null) + if (Output != null) { - this.Output.Validate(); + Output.Validate(); } - if (this.Assets != null) + if (Assets != null) { - foreach (var valueElement in this.Assets.Values) + foreach (var valueElement in Assets.Values) { if (valueElement != null) { @@ -290,6 +335,10 @@ public virtual void Validate() } } } + if (PayloadsLocation != null) + { + PayloadsLocation.Validate(); + } } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServicePropertiesForGraph.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServicePropertiesForGraph.cs index 76373b74cfa7..c261e5337216 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServicePropertiesForGraph.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServicePropertiesForGraph.cs @@ -1,13 +1,16 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -20,7 +23,10 @@ public partial class WebServicePropertiesForGraph : WebServiceProperties /// Initializes a new instance of the WebServicePropertiesForGraph /// class. /// - public WebServicePropertiesForGraph() { } + public WebServicePropertiesForGraph() + { + CustomInit(); + } /// /// Initializes a new instance of the WebServicePropertiesForGraph @@ -34,22 +40,22 @@ public WebServicePropertiesForGraph() { } /// Read Only: The date and time when the web /// service was last modified. /// Read Only: The provision state of - /// the web service. Valid values are Unknown, Provisioning, - /// Succeeded, and Failed. Possible values include: 'Unknown', - /// 'Provisioning', 'Succeeded', 'Failed' + /// the web service. Valid values are Unknown, Provisioning, Succeeded, + /// and Failed. Possible values include: 'Unknown', 'Provisioning', + /// 'Succeeded', 'Failed' /// Contains the web service provisioning keys. If /// you do not specify provisioning keys, the Azure Machine Learning - /// system generates them for you. Note: The keys are not returned - /// from calls to GET operations. - /// When set to true, indicates that - /// the web service is read-only and can no longer be updated or - /// patched, only removed. Default, is false. Note: Once set to true, - /// you cannot change its value. + /// system generates them for you. Note: The keys are not returned from + /// calls to GET operations. + /// When set to true, indicates that the + /// web service is read-only and can no longer be updated or patched, + /// only removed. Default, is false. Note: Once set to true, you cannot + /// change its value. /// Read Only: Contains the URI of the /// swagger spec associated with this web service. /// When set to true, sample data is - /// included in the web service's swagger definition. The default - /// value is true. + /// included in the web service's swagger definition. The default value + /// is true. /// Contains the configuration /// settings for the web service endpoint. /// Settings controlling the diagnostics @@ -62,18 +68,18 @@ public WebServicePropertiesForGraph() { } /// available in the new storage account or calls to your web service /// will fail. /// Specifies the Machine - /// Learning workspace containing the experiment that is source for - /// the web service. + /// Learning workspace containing the experiment that is source for the + /// web service. /// Contains the commitment plan /// associated with this web service. Set at creation time. Once set, /// this value cannot be changed. Note: The commitment plan is not /// returned from calls to GET operations. /// Contains the Swagger 2.0 schema describing one - /// or more of the web service's inputs. For more information, see - /// the Swagger specification. - /// Contains the Swagger 2.0 schema describing - /// one or more of the web service's outputs. For more information, - /// see the Swagger specification. + /// or more of the web service's inputs. For more information, see the + /// Swagger specification. + /// Contains the Swagger 2.0 schema describing one + /// or more of the web service's outputs. For more information, see the + /// Swagger specification. /// Defines sample input data for one or /// more of the service's inputs. /// Contains user defined properties describing @@ -81,27 +87,44 @@ public WebServicePropertiesForGraph() { } /// pairs. /// The set of global parameters values /// defined for the web service, given as a global parameter name to - /// default value map. If no default value is specified, the - /// parameter is considered to be required. - /// The definition of the graph package making - /// up this web service. - public WebServicePropertiesForGraph(string title = default(string), string description = default(string), System.DateTime? createdOn = default(System.DateTime?), System.DateTime? modifiedOn = default(System.DateTime?), string provisioningState = default(string), WebServiceKeys keys = default(WebServiceKeys), bool? readOnlyProperty = default(bool?), string swaggerLocation = default(string), bool? exposeSampleData = default(bool?), RealtimeConfiguration realtimeConfiguration = default(RealtimeConfiguration), DiagnosticsConfiguration diagnostics = default(DiagnosticsConfiguration), StorageAccount storageAccount = default(StorageAccount), MachineLearningWorkspace machineLearningWorkspace = default(MachineLearningWorkspace), CommitmentPlan commitmentPlan = default(CommitmentPlan), ServiceInputOutputSpecification input = default(ServiceInputOutputSpecification), ServiceInputOutputSpecification output = default(ServiceInputOutputSpecification), ExampleRequest exampleRequest = default(ExampleRequest), System.Collections.Generic.IDictionary assets = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary parameters = default(System.Collections.Generic.IDictionary), GraphPackage package = default(GraphPackage)) - : base(title, description, createdOn, modifiedOn, provisioningState, keys, readOnlyProperty, swaggerLocation, exposeSampleData, realtimeConfiguration, diagnostics, storageAccount, machineLearningWorkspace, commitmentPlan, input, output, exampleRequest, assets, parameters) + /// default value map. If no default value is specified, the parameter + /// is considered to be required. + /// When set to true, indicates + /// that the payload size is larger than 3 MB. Otherwise false. If the + /// payload size exceed 3 MB, the payload is stored in a blob and the + /// PayloadsLocation parameter contains the URI of the blob. Otherwise, + /// this will be set to false and Assets, Input, Output, Package, + /// Parameters, ExampleRequest are inline. The Payload sizes is + /// determined by adding the size of the Assets, Input, Output, + /// Package, Parameters, and the ExampleRequest. + /// The URI of the payload blob. This + /// paramater contains a value only if the payloadsInBlobStorage + /// parameter is set to true. Otherwise is set to null. + /// The definition of the graph package making up + /// this web service. + public WebServicePropertiesForGraph(string title = default(string), string description = default(string), System.DateTime? createdOn = default(System.DateTime?), System.DateTime? modifiedOn = default(System.DateTime?), string provisioningState = default(string), WebServiceKeys keys = default(WebServiceKeys), bool? readOnlyProperty = default(bool?), string swaggerLocation = default(string), bool? exposeSampleData = default(bool?), RealtimeConfiguration realtimeConfiguration = default(RealtimeConfiguration), DiagnosticsConfiguration diagnostics = default(DiagnosticsConfiguration), StorageAccount storageAccount = default(StorageAccount), MachineLearningWorkspace machineLearningWorkspace = default(MachineLearningWorkspace), CommitmentPlan commitmentPlan = default(CommitmentPlan), ServiceInputOutputSpecification input = default(ServiceInputOutputSpecification), ServiceInputOutputSpecification output = default(ServiceInputOutputSpecification), ExampleRequest exampleRequest = default(ExampleRequest), IDictionary assets = default(IDictionary), IDictionary parameters = default(IDictionary), bool? payloadsInBlobStorage = default(bool?), BlobLocation payloadsLocation = default(BlobLocation), GraphPackage package = default(GraphPackage)) + : base(title, description, createdOn, modifiedOn, provisioningState, keys, readOnlyProperty, swaggerLocation, exposeSampleData, realtimeConfiguration, diagnostics, storageAccount, machineLearningWorkspace, commitmentPlan, input, output, exampleRequest, assets, parameters, payloadsInBlobStorage, payloadsLocation) { Package = package; + CustomInit(); } /// - /// Gets or sets the definition of the graph package making up this - /// web service. + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the definition of the graph package making up this web + /// service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "package")] + [JsonProperty(PropertyName = "package")] public GraphPackage Package { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperations.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperations.cs index f9257b84eabe..830384b1d781 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperations.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperations.cs @@ -1,22 +1,28 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { - using System.Linq; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; /// /// WebServicesOperations operations. /// - internal partial class WebServicesOperations : Microsoft.Rest.IServiceOperations, IWebServicesOperations + internal partial class WebServicesOperations : IServiceOperations, IWebServicesOperations { /// /// Initializes a new instance of the WebServicesOperations class. @@ -29,11 +35,11 @@ internal partial class WebServicesOperations : Microsoft.Rest.IServiceOperations /// internal WebServicesOperations(AzureMLWebServicesManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -62,21 +68,18 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync( - resourceGroupName, webServiceName, createOrUpdatePayload, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, webServiceName, createOrUpdatePayload, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Create or update a web service. This call will overwrite an existing web - /// service. Note that there is no warning or confirmation. This is a - /// nonrecoverable operation. If your intent is to create a new web service, - /// call the Get operation first to verify that it does not exist. + /// Gets the Web Service Definition as specified by a subscription, resource + /// group, and name. Note that the storage credentials and web service keys are + /// not returned by this call. To get the web service access keys, call List + /// Keys. /// /// /// Name of the resource group in which the web service is located. @@ -84,8 +87,8 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The name of the web service. /// - /// - /// The payload that is used to create or update the web service. + /// + /// The region for which encrypted credential parameters are valid. /// /// /// Headers that will be added to request. @@ -93,90 +96,91 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (webServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); - } - if (createOrUpdatePayload == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "createOrUpdatePayload"); - } - if (createOrUpdatePayload != null) - { - createOrUpdatePayload.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("webServiceName", webServiceName); - tracingParameters.Add("createOrUpdatePayload", createOrUpdatePayload); + tracingParameters.Add("region", region); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (region != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("region={0}", System.Uri.EscapeDataString(region))); + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -191,58 +195,52 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; - if(createOrUpdatePayload != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(createOrUpdatePayload, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -252,7 +250,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -265,48 +263,106 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the Web Service Definiton as specified by a subscription, resource - /// group, and name. Note that the storage credentials and web service keys - /// are not returned by this call. To get the web service access keys, call - /// List Keys. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The payload to use to patch the web service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> PatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginPatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the specified web service. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateRegionalPropertiesWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginCreateRegionalPropertiesWithHttpMessagesAsync(resourceGroupName, webServiceName, region, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the access keys for the specified web service. /// /// /// Name of the resource group in which the web service is located. @@ -320,81 +376,86 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (webServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("webServiceName", webServiceName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/listKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -410,51 +471,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -464,7 +525,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -477,68 +538,33 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. - /// - /// - /// Name of the resource group in which the web service is located. - /// - /// - /// The name of the web service. - /// - /// - /// The payload to use to patch the web service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async System.Threading.Tasks.Task> PatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send Request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginPatchWithHttpMessagesAsync( - resourceGroupName, webServiceName, patchPayload, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); - } - - /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Gets the web services in the specified resource group. /// /// /// Name of the resource group in which the web service is located. /// - /// - /// The name of the web service. - /// - /// - /// The payload to use to patch the web service. + /// + /// Continuation token for pagination. /// /// /// Headers that will be added to request. @@ -546,86 +572,85 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (webServiceName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); - } - if (patchPayload == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "patchPayload"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("webServiceName", webServiceName); - tracingParameters.Add("patchPayload", patchPayload); + tracingParameters.Add("skiptoken", skiptoken); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginPatch", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (skiptoken != null) + { + _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); + } + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -640,58 +665,52 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; - if(patchPayload != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(patchPayload, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -701,7 +720,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -714,50 +733,216 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes the specified web service. + /// Gets the web services in the specified subscription. /// - /// - /// Name of the resource group in which the web service is located. - /// - /// - /// The name of the web service. + /// + /// Continuation token for pagination. /// /// - /// The headers that will be added to request. + /// Headers that will be added to request. /// /// /// The cancellation token. /// - public async System.Threading.Tasks.Task RemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionIdWithHttpMessagesAsync(string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginRemoveWithHttpMessagesAsync( - resourceGroupName, webServiceName, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("skiptoken", skiptoken); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionId", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.MachineLearning/webServices").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (skiptoken != null) + { + _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; } /// - /// Deletes the specified web service. + /// Create or update a web service. This call will overwrite an existing web + /// service. Note that there is no warning or confirmation. This is a + /// nonrecoverable operation. If your intent is to create a new web service, + /// call the Get operation first to verify that it does not exist. /// /// /// Name of the resource group in which the web service is located. @@ -765,84 +950,104 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The name of the web service. /// + /// + /// The payload that is used to create or update the web service. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task BeginRemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (webServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); + } + if (createOrUpdatePayload == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "createOrUpdatePayload"); + } + if (createOrUpdatePayload != null) + { + createOrUpdatePayload.Validate(); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("webServiceName", webServiceName); + tracingParameters.Add("createOrUpdatePayload", createOrUpdatePayload); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginRemove", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -857,44 +1062,58 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; + if(createOrUpdatePayload != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(createOrUpdatePayload, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -904,22 +1123,60 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the access keys for the specified web service. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// Name of the resource group in which the web service is located. @@ -927,87 +1184,100 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The name of the web service. /// + /// + /// The payload to use to patch the web service. + /// /// /// Headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (webServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); } - if (this.Client.ApiVersion == null) + if (patchPayload == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "patchPayload"); } - if (this.Client.SubscriptionId == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("webServiceName", webServiceName); + tracingParameters.Add("patchPayload", patchPayload); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPatch", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/listKeys").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1022,52 +1292,58 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; + if(patchPayload != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(patchPayload, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1077,7 +1353,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1090,33 +1366,33 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the web services in the specified resource group. + /// Deletes the specified web service. /// /// /// Name of the resource group in which the web service is located. /// - /// - /// Continuation token for pagination. + /// + /// The name of the web service. /// /// /// Headers that will be added to request. @@ -1124,80 +1400,83 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response + /// + /// Thrown when a required parameter is null /// - /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginRemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (webServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("skiptoken", skiptoken); + tracingParameters.Add("webServiceName", webServiceName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRemove", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (skiptoken != null) - { - _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); - } - if (this.Client.ApiVersion != null) + _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1213,51 +1492,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 202 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1267,43 +1546,36 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the web services in the specified subscription. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// - /// - /// Continuation token for pagination. + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. /// /// /// Headers that will be added to request. @@ -1311,74 +1583,95 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateRegionalPropertiesWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (webServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); + } + if (region == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "region"); + } + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("skiptoken", skiptoken); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("webServiceName", webServiceName); + tracingParameters.Add("region", region); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateRegionalProperties", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.MachineLearning/webServices").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (skiptoken != null) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/CreateRegionalBlob").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (region != null) { - _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); + _queryParameters.Add(string.Format("region={0}", System.Uri.EscapeDataString(region))); } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1394,51 +1687,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 202 && (int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1448,7 +1741,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1461,21 +1754,21 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -1492,61 +1785,66 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1562,51 +1860,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1616,7 +1914,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1629,21 +1927,21 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -1660,61 +1958,66 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when unable to deserialize the response /// - /// + /// + /// Thrown when a required parameter is null + /// + /// /// Thrown when a required parameter is null /// /// /// A response object containing the response body and response headers. /// - public async System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListBySubscriptionIdNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionIdNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1730,51 +2033,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1784,7 +2087,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1797,21 +2100,21 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperationsExtensions.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperationsExtensions.cs index 2c520b111d34..9d1dd4ff5507 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperationsExtensions.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperationsExtensions.cs @@ -1,16 +1,17 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for WebServicesOperations. @@ -37,7 +38,7 @@ public static partial class WebServicesOperationsExtensions /// public static WebService CreateOrUpdate(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).CreateOrUpdateAsync(resourceGroupName, webServiceName, createOrUpdatePayload), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, webServiceName, createOrUpdatePayload).GetAwaiter().GetResult(); } /// @@ -61,7 +62,7 @@ public static WebService CreateOrUpdate(this IWebServicesOperations operations, /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, webServiceName, createOrUpdatePayload, null, cancellationToken).ConfigureAwait(false)) { @@ -70,10 +71,10 @@ public static WebService CreateOrUpdate(this IWebServicesOperations operations, } /// - /// Create or update a web service. This call will overwrite an existing web - /// service. Note that there is no warning or confirmation. This is a - /// nonrecoverable operation. If your intent is to create a new web service, - /// call the Get operation first to verify that it does not exist. + /// Gets the Web Service Definition as specified by a subscription, resource + /// group, and name. Note that the storage credentials and web service keys are + /// not returned by this call. To get the web service access keys, call List + /// Keys. /// /// /// The operations group for this extension method. @@ -84,19 +85,19 @@ public static WebService CreateOrUpdate(this IWebServicesOperations operations, /// /// The name of the web service. /// - /// - /// The payload that is used to create or update the web service. + /// + /// The region for which encrypted credential parameters are valid. /// - public static WebService BeginCreateOrUpdate(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload) + public static WebService Get(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region = default(string)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, webServiceName, createOrUpdatePayload), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, webServiceName, region).GetAwaiter().GetResult(); } /// - /// Create or update a web service. This call will overwrite an existing web - /// service. Note that there is no warning or confirmation. This is a - /// nonrecoverable operation. If your intent is to create a new web service, - /// call the Get operation first to verify that it does not exist. + /// Gets the Web Service Definition as specified by a subscription, resource + /// group, and name. Note that the storage credentials and web service keys are + /// not returned by this call. To get the web service access keys, call List + /// Keys. /// /// /// The operations group for this extension method. @@ -107,25 +108,24 @@ public static WebService BeginCreateOrUpdate(this IWebServicesOperations operati /// /// The name of the web service. /// - /// - /// The payload that is used to create or update the web service. + /// + /// The region for which encrypted credential parameters are valid. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginCreateOrUpdateAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, webServiceName, createOrUpdatePayload, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, webServiceName, region, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the Web Service Definiton as specified by a subscription, resource - /// group, and name. Note that the storage credentials and web service keys - /// are not returned by this call. To get the web service access keys, call - /// List Keys. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// The operations group for this extension method. @@ -136,16 +136,18 @@ public static WebService BeginCreateOrUpdate(this IWebServicesOperations operati /// /// The name of the web service. /// - public static WebService Get(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) + /// + /// The payload to use to patch the web service. + /// + public static WebService Patch(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).GetAsync(resourceGroupName, webServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.PatchAsync(resourceGroupName, webServiceName, patchPayload).GetAwaiter().GetResult(); } /// - /// Gets the Web Service Definiton as specified by a subscription, resource - /// group, and name. Note that the storage credentials and web service keys - /// are not returned by this call. To get the web service access keys, call - /// List Keys. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// The operations group for this extension method. @@ -156,21 +158,22 @@ public static WebService Get(this IWebServicesOperations operations, string reso /// /// The name of the web service. /// + /// + /// The payload to use to patch the web service. + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task PatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Deletes the specified web service. /// /// /// The operations group for this extension method. @@ -181,18 +184,13 @@ public static WebService Get(this IWebServicesOperations operations, string reso /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. - /// - public static WebService Patch(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload) + public static void Remove(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).PatchAsync(resourceGroupName, webServiceName, patchPayload), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.RemoveAsync(resourceGroupName, webServiceName).GetAwaiter().GetResult(); } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Deletes the specified web service. /// /// /// The operations group for this extension method. @@ -203,24 +201,21 @@ public static WebService Patch(this IWebServicesOperations operations, string re /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. - /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task PatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task RemoveAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.RemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// /// /// The operations group for this extension method. @@ -231,18 +226,21 @@ public static WebService Patch(this IWebServicesOperations operations, string re /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. + /// + /// The region for which encrypted credential parameters are created. /// - public static WebService BeginPatch(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload) + public static AsyncOperationStatus CreateRegionalProperties(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).BeginPatchAsync(resourceGroupName, webServiceName, patchPayload), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateRegionalPropertiesAsync(resourceGroupName, webServiceName, region).GetAwaiter().GetResult(); } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// /// /// The operations group for this extension method. @@ -253,22 +251,22 @@ public static WebService BeginPatch(this IWebServicesOperations operations, stri /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. + /// + /// The region for which encrypted credential parameters are created. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginPatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateRegionalPropertiesAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginPatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateRegionalPropertiesWithHttpMessagesAsync(resourceGroupName, webServiceName, region, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes the specified web service. + /// Gets the access keys for the specified web service. /// /// /// The operations group for this extension method. @@ -279,13 +277,13 @@ public static WebService BeginPatch(this IWebServicesOperations operations, stri /// /// The name of the web service. /// - public static void Remove(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) + public static WebServiceKeys ListKeys(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).RemoveAsync(resourceGroupName, webServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListKeysAsync(resourceGroupName, webServiceName).GetAwaiter().GetResult(); } /// - /// Deletes the specified web service. + /// Gets the access keys for the specified web service. /// /// /// The operations group for this extension method. @@ -299,13 +297,93 @@ public static void Remove(this IWebServicesOperations operations, string resourc /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task RemoveAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task ListKeysAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.RemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Deletes the specified web service. + /// Gets the web services in the specified resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// Continuation token for pagination. + /// + public static IPage ListByResourceGroup(this IWebServicesOperations operations, string resourceGroupName, string skiptoken = default(string)) + { + return operations.ListByResourceGroupAsync(resourceGroupName, skiptoken).GetAwaiter().GetResult(); + } + + /// + /// Gets the web services in the specified resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// Continuation token for pagination. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IWebServicesOperations operations, string resourceGroupName, string skiptoken = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, skiptoken, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the web services in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Continuation token for pagination. + /// + public static IPage ListBySubscriptionId(this IWebServicesOperations operations, string skiptoken = default(string)) + { + return operations.ListBySubscriptionIdAsync(skiptoken).GetAwaiter().GetResult(); + } + + /// + /// Gets the web services in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Continuation token for pagination. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionIdAsync(this IWebServicesOperations operations, string skiptoken = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionIdWithHttpMessagesAsync(skiptoken, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update a web service. This call will overwrite an existing web + /// service. Note that there is no warning or confirmation. This is a + /// nonrecoverable operation. If your intent is to create a new web service, + /// call the Get operation first to verify that it does not exist. /// /// /// The operations group for this extension method. @@ -316,13 +394,19 @@ public static void Remove(this IWebServicesOperations operations, string resourc /// /// The name of the web service. /// - public static void BeginRemove(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) + /// + /// The payload that is used to create or update the web service. + /// + public static WebService BeginCreateOrUpdate(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).BeginRemoveAsync(resourceGroupName, webServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateOrUpdateAsync(resourceGroupName, webServiceName, createOrUpdatePayload).GetAwaiter().GetResult(); } /// - /// Deletes the specified web service. + /// Create or update a web service. This call will overwrite an existing web + /// service. Note that there is no warning or confirmation. This is a + /// nonrecoverable operation. If your intent is to create a new web service, + /// call the Get operation first to verify that it does not exist. /// /// /// The operations group for this extension method. @@ -333,16 +417,24 @@ public static void BeginRemove(this IWebServicesOperations operations, string re /// /// The name of the web service. /// + /// + /// The payload that is used to create or update the web service. + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginRemoveAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateOrUpdateAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginRemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, webServiceName, createOrUpdatePayload, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Gets the access keys for the specified web service. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// The operations group for this extension method. @@ -353,13 +445,18 @@ public static void BeginRemove(this IWebServicesOperations operations, string re /// /// The name of the web service. /// - public static WebServiceKeys ListKeys(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) + /// + /// The payload to use to patch the web service. + /// + public static WebService BeginPatch(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListKeysAsync(resourceGroupName, webServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginPatchAsync(resourceGroupName, webServiceName, patchPayload).GetAwaiter().GetResult(); } /// - /// Gets the access keys for the specified web service. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// The operations group for this extension method. @@ -370,19 +467,22 @@ public static WebServiceKeys ListKeys(this IWebServicesOperations operations, st /// /// The name of the web service. /// + /// + /// The payload to use to patch the web service. + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ListKeysAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginPatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginPatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the web services in the specified resource group. + /// Deletes the specified web service. /// /// /// The operations group for this extension method. @@ -390,16 +490,16 @@ public static WebServiceKeys ListKeys(this IWebServicesOperations operations, st /// /// Name of the resource group in which the web service is located. /// - /// - /// Continuation token for pagination. + /// + /// The name of the web service. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IWebServicesOperations operations, string resourceGroupName, string skiptoken = default(string)) + public static void BeginRemove(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListByResourceGroupAsync(resourceGroupName, skiptoken), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginRemoveAsync(resourceGroupName, webServiceName).GetAwaiter().GetResult(); } /// - /// Gets the web services in the specified resource group. + /// Deletes the specified web service. /// /// /// The operations group for this extension method. @@ -407,49 +507,68 @@ public static WebServiceKeys ListKeys(this IWebServicesOperations operations, st /// /// Name of the resource group in which the web service is located. /// - /// - /// Continuation token for pagination. + /// + /// The name of the web service. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IWebServicesOperations operations, string resourceGroupName, string skiptoken = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginRemoveAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, skiptoken, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginRemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets the web services in the specified subscription. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// /// /// The operations group for this extension method. /// - /// - /// Continuation token for pagination. + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. /// - public static Microsoft.Rest.Azure.IPage List(this IWebServicesOperations operations, string skiptoken = default(string)) + public static AsyncOperationStatus BeginCreateRegionalProperties(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListAsync(skiptoken), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateRegionalPropertiesAsync(resourceGroupName, webServiceName, region).GetAwaiter().GetResult(); } /// - /// Gets the web services in the specified subscription. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// /// /// The operations group for this extension method. /// - /// - /// Continuation token for pagination. + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IWebServicesOperations operations, string skiptoken = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateRegionalPropertiesAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(skiptoken, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateRegionalPropertiesWithHttpMessagesAsync(resourceGroupName, webServiceName, region, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -464,9 +583,9 @@ public static WebServiceKeys ListKeys(this IWebServicesOperations operations, st /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this IWebServicesOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IWebServicesOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -481,7 +600,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(thi /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IWebServicesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IWebServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -498,9 +617,9 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(thi /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListNext(this IWebServicesOperations operations, string nextPageLink) + public static IPage ListBySubscriptionIdNext(this IWebServicesOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListBySubscriptionIdNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -515,9 +634,9 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IWebServicesO /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IWebServicesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListBySubscriptionIdNextAsync(this IWebServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListBySubscriptionIdNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs index 20430ab25e11..bf6aa5f3f193 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Machine Learning Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Machine Learning.")] -[assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.10.0.0")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/generate.cmd b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/generate.cmd index 9163875bff6c..0b55f2ba2a39 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/generate.cmd +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/generate.cmd @@ -8,7 +8,7 @@ setlocal set autoRestVersion=0.17.0-Nightly20160824 -set webServicesSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-machinelearning/2016-05-01-preview/swagger/webservices.json" +set webServicesSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-machinelearning/2017-01-01/swagger/webservices.json" set commitmentPlansSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-machinelearning/2016-05-01-preview/swagger/commitmentPlans.json" set repoRoot=%~dp0..\..\..\.. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json index 5144484051e2..e42f6dd71c25 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json @@ -1,5 +1,5 @@ { - "version": "0.10.0-preview", + "version": "1.0.0", "description": "Provides Machine Learning WebServices management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ],