diff --git a/src/SDKs/Kusto/AzSdk.RP.props b/src/SDKs/Kusto/AzSdk.RP.props
index f7a35374b99d..243f65c3d5f5 100644
--- a/src/SDKs/Kusto/AzSdk.RP.props
+++ b/src/SDKs/Kusto/AzSdk.RP.props
@@ -1,7 +1,7 @@
- Kusto_2018-09-07-preview;
+ Kusto_2019-01-21;
$(PackageTags);$(CommonTags);$(AzureApiTag);
\ No newline at end of file
diff --git a/src/SDKs/Kusto/Kusto.Tests/ScenarioTests/KustoOperationsTests.cs b/src/SDKs/Kusto/Kusto.Tests/ScenarioTests/KustoOperationsTests.cs
index 4f6c04b849b8..9046678757a7 100644
--- a/src/SDKs/Kusto/Kusto.Tests/ScenarioTests/KustoOperationsTests.cs
+++ b/src/SDKs/Kusto/Kusto.Tests/ScenarioTests/KustoOperationsTests.cs
@@ -19,7 +19,7 @@ namespace Kusto.Tests.ScenarioTests
{
public class KustoOperationsTests : TestBase
{
-
+
[Fact]
public void OperationsTest()
{
@@ -29,6 +29,7 @@ public void OperationsTest()
using (var context = MockContext.Start(this.GetType().FullName))
{
var testBase = new KustoTestBase(context);
+ var numOfOperations = 32;
try
{
@@ -36,16 +37,14 @@ public void OperationsTest()
var resultOperationsList = testBase.client.Operations.List();
// validate the operations result
- Assert.Equal(18, resultOperationsList.Count());
+ Assert.Equal(numOfOperations, resultOperationsList.Count());
var operationsPageLink =
"https://management.azure.com/providers/Microsoft.Kusto/operations?api-version=2018-09-07-preview";
var resultOperationsNextPage = testBase.client.Operations.ListNext(operationsPageLink);
// validate the operations result
- var a = resultOperationsNextPage.Count();
-
- Assert.Equal(18, resultOperationsNextPage.Count());
+ Assert.Equal(numOfOperations, resultOperationsNextPage.Count());
}
catch (Exception ex)
{
@@ -58,22 +57,36 @@ public void OperationsTest()
[Fact]
public void KustoClusterTests()
{
+ string runningState = "Running";
+ string stoppedState = "Stopped";
+
using (MockContext context = MockContext.Start(this.GetType().FullName))
{
var testBase = new KustoTestBase(context);
//create cluster
var createdcluster = testBase.client.Clusters.CreateOrUpdate(testBase.rgName, testBase.clusterName, testBase.cluster);
- VerifyCluster(createdcluster, testBase.clusterName, testBase.sku1, trustedExternalTenants: testBase.trustedExternalTenants);
+ VerifyCluster(createdcluster, testBase.clusterName, testBase.sku1, trustedExternalTenants: testBase.trustedExternalTenants, state: runningState);
// get cluster
var cluster = testBase.client.Clusters.Get(testBase.rgName, testBase.clusterName);
- VerifyCluster(cluster, testBase.clusterName, testBase.sku1, trustedExternalTenants: testBase.trustedExternalTenants);
+ VerifyCluster(cluster, testBase.clusterName, testBase.sku1, trustedExternalTenants: testBase.trustedExternalTenants, state: runningState);
//update cluster
testBase.cluster.Sku = testBase.sku2;
var updatedcluster = testBase.client.Clusters.CreateOrUpdate(testBase.rgName, testBase.clusterName, testBase.cluster);
- VerifyCluster(updatedcluster, testBase.clusterName, testBase.sku2, trustedExternalTenants: testBase.trustedExternalTenants);
+ VerifyCluster(updatedcluster, testBase.clusterName, testBase.sku2, trustedExternalTenants: testBase.trustedExternalTenants, state: runningState);
+
+ //suspend cluster
+ testBase.client.Clusters.Stop(testBase.rgName, testBase.clusterName);
+ var stoppedCluster = testBase.client.Clusters.Get(testBase.rgName, testBase.clusterName);
+ VerifyCluster(stoppedCluster, testBase.clusterName, testBase.sku2, trustedExternalTenants: testBase.trustedExternalTenants, state: stoppedState);
+
+ //suspend cluster
+ testBase.client.Clusters.Start(testBase.rgName, testBase.clusterName);
+ var runningCluster = testBase.client.Clusters.Get(testBase.rgName, testBase.clusterName);
+ VerifyCluster(runningCluster, testBase.clusterName, testBase.sku2, trustedExternalTenants: testBase.trustedExternalTenants, state: runningState);
+
//delete cluster
testBase.client.Clusters.Delete(testBase.rgName, testBase.clusterName);
@@ -93,112 +106,169 @@ public void KustoDatabaseTests()
{
var testBase = new KustoTestBase(context);
+ //create cluster
+ var createdcluster = testBase.client.Clusters.CreateOrUpdate(testBase.rgName, testBase.clusterName, testBase.cluster);
+
//create database
- var createdDb = testBase.client.Databases.CreateOrUpdate(testBase.resourceGroupForNestedResourcesName, testBase.clusterForNestedResourceName, testBase.databaseName, testBase.database);
- VerifyDatabase(createdDb, testBase.databaseName, testBase.softDeletePeriodInDays1, testBase.hotCachePeriodInDays1, testBase.clusterForNestedResourceName);
+ var createdDb = testBase.client.Databases.CreateOrUpdate(testBase.rgName, createdcluster.Name, testBase.databaseName, testBase.database);
+ VerifyDatabase(createdDb, testBase.databaseName, testBase.softDeletePeriod1, testBase.hotCachePeriod1, createdcluster.Name);
// get database
- var database = testBase.client.Databases.Get(testBase.resourceGroupForNestedResourcesName, testBase.clusterForNestedResourceName, testBase.databaseName);
- VerifyDatabase(database, testBase.databaseName, testBase.softDeletePeriodInDays1, testBase.hotCachePeriodInDays1, testBase.clusterForNestedResourceName);
+ var database = testBase.client.Databases.Get(testBase.rgName, createdcluster.Name, testBase.databaseName);
+ VerifyDatabase(database, testBase.databaseName, testBase.softDeletePeriod1, testBase.hotCachePeriod1, createdcluster.Name);
//update database
- testBase.database.HotCachePeriodInDays = testBase.hotCachePeriodInDays2;
- testBase.database.SoftDeletePeriodInDays = testBase.softDeletePeriodInDays2;
- var updatedDb = testBase.client.Databases.CreateOrUpdate(testBase.resourceGroupForNestedResourcesName, testBase.clusterForNestedResourceName, testBase.databaseName, testBase.database);
- VerifyDatabase(updatedDb, testBase.databaseName, testBase.softDeletePeriodInDays2, testBase.hotCachePeriodInDays2, testBase.clusterForNestedResourceName);
+ testBase.database.HotCachePeriod = testBase.hotCachePeriod2;
+ testBase.database.SoftDeletePeriod = testBase.softDeletePeriod2;
+ var updatedDb = testBase.client.Databases.CreateOrUpdate(testBase.rgName, createdcluster.Name, testBase.databaseName, testBase.database);
+ VerifyDatabase(updatedDb, testBase.databaseName, testBase.softDeletePeriod2, testBase.hotCachePeriod2, createdcluster.Name);
//delete database
- testBase.client.Databases.Delete(testBase.resourceGroupForNestedResourcesName, testBase.clusterForNestedResourceName, testBase.databaseName);
+ testBase.client.Databases.Delete(testBase.rgName, createdcluster.Name, testBase.databaseName);
Assert.Throws(() =>
{
testBase.client.Databases.Get(
- resourceGroupName: testBase.resourceGroupForNestedResourcesName,
- clusterName: testBase.clusterForNestedResourceName,
+ resourceGroupName: testBase.rgName,
+ clusterName: createdcluster.Name,
databaseName: testBase.databaseName);
});
+
+ //delete cluster
+ testBase.client.Clusters.Delete(testBase.rgName, testBase.clusterName);
}
}
[Fact]
- public void KustoEventHubConnectionTests()
+ public void KustoDataConnectionTests()
{
using (MockContext context = MockContext.Start(this.GetType().FullName))
{
var testBase = new KustoTestBase(context);
+ //create cluster
+ var createdCluster = testBase.client.Clusters.CreateOrUpdate(testBase.rgName, testBase.clusterName, testBase.cluster);
+
+ //create database
+ var createdDb = testBase.client.Databases.CreateOrUpdate(testBase.rgName, createdCluster.Name, testBase.databaseName, testBase.database);
+
//create event hub connection
- var createdEventHubConnection = testBase.client.EventHubConnections.CreateOrUpdate(testBase.resourceGroupForNestedResourcesName, testBase.clusterForNestedResourceName, testBase.databaseForNestedResourceName, testBase.eventHubConnectionName, testBase.eventhubConnection);
- VerifyEventHub(createdEventHubConnection,
+ var createdEventHubConnection = testBase.client.DataConnections.CreateOrUpdate(testBase.rgName, testBase.clusterName, testBase.databaseName, testBase.eventHubConnectionName, testBase.eventhubConnection);
+ VerifyEventHub(createdEventHubConnection as EventHubDataConnection,
testBase.eventHubConnectionName,
testBase.eventHubResourceId,
testBase.consumerGroupName,
- testBase.clusterForNestedResourceName,
- testBase.databaseForNestedResourceName,
- testBase.MappingNameForNestedResources1,
- testBase.tableNameForNestedResources1,
- testBase.dataFormat);
+ testBase.clusterName,
+ testBase.databaseName,
+ string.Empty);
// get event hub connection
- var eventHubConnection = testBase.client.EventHubConnections.Get(testBase.resourceGroupForNestedResourcesName, testBase.clusterForNestedResourceName, testBase.databaseForNestedResourceName, testBase.eventHubConnectionName);
- VerifyEventHub(eventHubConnection, testBase.eventHubConnectionName,
+ var eventHubConnection = testBase.client.DataConnections.Get(testBase.rgName, testBase.clusterName, testBase.databaseName, testBase.eventHubConnectionName);
+ VerifyEventHub(eventHubConnection as EventHubDataConnection,
+ testBase.eventHubConnectionName,
testBase.eventHubResourceId,
testBase.consumerGroupName,
- testBase.clusterForNestedResourceName,
- testBase.databaseForNestedResourceName,
- testBase.MappingNameForNestedResources1,
- testBase.tableNameForNestedResources1,
- testBase.dataFormat);
-
+ testBase.clusterName,
+ testBase.databaseName,
+ string.Empty);
//update event hub connection
- testBase.eventhubConnection.MappingRuleName = testBase.MappingNameForNestedResources2;
- testBase.eventhubConnection.TableName = testBase.tableNameForNestedResources2;
- var updatedEventHubConnection = testBase.client.EventHubConnections.CreateOrUpdate(testBase.resourceGroupForNestedResourcesName, testBase.clusterForNestedResourceName, testBase.databaseForNestedResourceName, testBase.eventHubConnectionName, testBase.eventhubConnection);
- VerifyEventHub(updatedEventHubConnection,
+ testBase.eventhubConnection.DataFormat = testBase.dataFormat;
+ var updatedEventHubConnection = testBase.client.DataConnections.CreateOrUpdate(testBase.rgName, testBase.clusterName, testBase.databaseName, testBase.eventHubConnectionName, testBase.eventhubConnection);
+ VerifyEventHub(updatedEventHubConnection as EventHubDataConnection,
testBase.eventHubConnectionName,
testBase.eventHubResourceId,
testBase.consumerGroupName,
- testBase.clusterForNestedResourceName,
- testBase.databaseForNestedResourceName,
- testBase.MappingNameForNestedResources1,
- testBase.tableNameForNestedResources1,
+ testBase.clusterName,
+ testBase.databaseName,
testBase.dataFormat);
//delete event hub
- testBase.client.EventHubConnections.Delete(testBase.resourceGroupForNestedResourcesName, testBase.clusterForNestedResourceName, testBase.databaseForNestedResourceName, testBase.eventHubConnectionName);
+ testBase.client.DataConnections.Delete(testBase.rgName, testBase.clusterName, testBase.databaseName, testBase.eventHubConnectionName);
Assert.Throws(() =>
{
- testBase.client.EventHubConnections.Get(
- resourceGroupName: testBase.resourceGroupForNestedResourcesName,
- clusterName: testBase.clusterForNestedResourceName,
- databaseName: testBase.databaseForNestedResourceName,
- eventHubConnectionName: testBase.eventHubConnectionName);
+ testBase.client.DataConnections.Get(
+ resourceGroupName: testBase.rgName,
+ clusterName: createdCluster.Name,
+ databaseName: createdDb.Name,
+ dataConnectionName: testBase.eventHubConnectionName);
});
+
+ //delete database
+ testBase.client.Databases.Delete(testBase.rgName, testBase.clusterName, testBase.databaseName);
+
+ //delete cluster
+ testBase.client.Clusters.Delete(testBase.rgName, testBase.clusterName);
}
}
- private void VerifyEventHub(EventHubConnection createdEventHubConnection, string eventHubConnectionName, string eventHubResourceId, string consumerGroupName, string clusterName, string databaseName, string mappingRule, string tableName, string dataFormat)
+ [Fact]
+ public void KustoDatabasePrincipalsTests()
+ {
+ using (MockContext context = MockContext.Start(this.GetType().FullName))
+ {
+ var testBase = new KustoTestBase(context);
+
+ //create cluster
+ var createdCluster = testBase.client.Clusters.CreateOrUpdate(testBase.rgName, testBase.clusterName, testBase.cluster);
+
+ //create database
+ var createdDb = testBase.client.Databases.CreateOrUpdate(testBase.rgName, createdCluster.Name, testBase.databaseName, testBase.database);
+
+ //create principals list
+ var databasePrincipalListRequest = new DatabasePrincipalListRequest(testBase.databasePrincipals);
+ var principalsResult = testBase.client.Databases.AddPrincipals(testBase.rgName, testBase.clusterName, testBase.databaseName, databasePrincipalListRequest);
+ VerifyPrincipalsExists(principalsResult.Value, testBase.databasePrincipal);
+
+ // get principals list
+ var principalsList = testBase.client.Databases.ListPrincipals(testBase.rgName, testBase.clusterName, testBase.databaseName);
+ VerifyPrincipalsExists(principalsList, testBase.databasePrincipal);
+
+ //delete principals
+ principalsResult = testBase.client.Databases.RemovePrincipals(testBase.rgName, testBase.clusterName, testBase.databaseName, databasePrincipalListRequest);
+ VerifyPrincipalsDontExist(principalsResult.Value, testBase.databasePrincipal);
+
+ //delete database
+ testBase.client.Databases.Delete(testBase.rgName, testBase.clusterName, testBase.databaseName);
+
+ //delete cluster
+ testBase.client.Clusters.Delete(testBase.rgName, testBase.clusterName);
+ }
+ }
+
+ private void VerifyPrincipalsExists(IEnumerable principals, DatabasePrincipal databasePrincipal)
+ {
+ Assert.NotNull(principals.First(principal => principal.Email == databasePrincipal.Email));
+ }
+
+ private void VerifyPrincipalsDontExist(IEnumerable principals, DatabasePrincipal databasePrincipal)
+ {
+ Assert.Null(principals.FirstOrDefault(principal => principal.Email == databasePrincipal.Email));
+ }
+
+ private void VerifyEventHub(EventHubDataConnection createdDataConnection, string eventHubConnectionName, string eventHubResourceId, string consumerGroupName, string clusterName, string databaseName, string dataFormat)
{
var eventHubFullName = ResourcesNamesUtils.GetFullEventHubName(clusterName, databaseName, eventHubConnectionName);
- Assert.Equal(createdEventHubConnection.Name, eventHubFullName);
- Assert.Equal(createdEventHubConnection.EventHubResourceId, eventHubResourceId);
- Assert.Equal(createdEventHubConnection.ConsumerGroup, consumerGroupName);
- Assert.Equal(createdEventHubConnection.Name, eventHubFullName);
- Assert.Equal(createdEventHubConnection.Name, eventHubFullName);
+ Assert.Equal(createdDataConnection.Name, eventHubFullName);
+ Assert.Equal(createdDataConnection.EventHubResourceId, eventHubResourceId);
+ Assert.Equal(createdDataConnection.ConsumerGroup, consumerGroupName);
+ Assert.Equal(createdDataConnection.Name, eventHubFullName);
+ Assert.Equal(createdDataConnection.DataFormat, dataFormat);
+
}
- private void VerifyDatabase(Database database, string databaseName, int softDeletePeriodInDays, int hotCachePeriodInDays, string clusterName)
+ private void VerifyDatabase(Database database, string databaseName, TimeSpan? softDeletePeriod, TimeSpan? hotCachePeriod, string clusterName)
{
var databaseFullName = ResourcesNamesUtils.GetFullDatabaseName(clusterName, databaseName);
Assert.Equal(database.Name, databaseFullName);
- Assert.Equal(database.SoftDeletePeriodInDays, softDeletePeriodInDays);
- Assert.Equal(database.HotCachePeriodInDays, hotCachePeriodInDays);
+ Assert.Equal(database.SoftDeletePeriod, softDeletePeriod);
+ Assert.Equal(database.HotCachePeriod, hotCachePeriod);
}
- private void VerifyCluster(Cluster cluster, string name, AzureSku sku, IList trustedExternalTenants)
+ private void VerifyCluster(Cluster cluster, string name, AzureSku sku, IList trustedExternalTenants, string state)
{
Assert.Equal(cluster.Name, name);
AssetEqualtsSku(cluster.Sku, sku);
+ Assert.Equal(state, cluster.State);
AssetEqualtsExtrnalTenants(cluster.TrustedExternalTenants, trustedExternalTenants);
}
diff --git a/src/SDKs/Kusto/Kusto.Tests/ScenarioTests/KustoTestBase.cs b/src/SDKs/Kusto/Kusto.Tests/ScenarioTests/KustoTestBase.cs
index ea68d8c621c7..c4631c914dfb 100644
--- a/src/SDKs/Kusto/Kusto.Tests/ScenarioTests/KustoTestBase.cs
+++ b/src/SDKs/Kusto/Kusto.Tests/ScenarioTests/KustoTestBase.cs
@@ -20,18 +20,9 @@ public class KustoTestBase : TestBase
private const string LocationKey = "location";
private const string SubIdKey = "SubId";
private const string ApplicationIdKey = "ApplicationId";
- public string eventHubResourceId = "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubForClients/eventhubs/eventhubtest";
- public string consumerGroupName = "consumergrouptest";
- public string databaseForNestedResourceName = "testDbForClients";
- public string clusterForNestedResourceName = "kustoclusterforclients";
- public string resourceGroupForNestedResourcesName = "ofertestgroup";
- public string locationForNestedResources = "Central US";
- public string tableNameForNestedResources1 = "TestTableForClients";
- public string tableNameForNestedResources2 = "TestTableForClients2";
- public string MappingNameForNestedResources1 = "TestIngestionMappingForTable1";
- public string MappingNameForNestedResources2 = "TestIngestionMappingForTable2";
- public string dataFormat = "CSV";
-
+ public string eventHubResourceId = "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubNamespaceForClients/eventhubs/eventhubtest";
+ public string dBprincipalMail = "oflipman@microsoft.com";
+ public string consumerGroupName = "$Default";
public string tenantId { get; set; }
@@ -46,15 +37,19 @@ public class KustoTestBase : TestBase
public Dictionary tags { get; internal set; }
public AzureSku sku1 { get; set; }
public AzureSku sku2 { get; set; }
- public int softDeletePeriodInDays1 { get; set; }
- public int hotCachePeriodInDays1 { get; set; }
- public int softDeletePeriodInDays2 { get; set; }
- public int hotCachePeriodInDays2 { get; set; }
+ public TimeSpan? softDeletePeriod1 { get; set; }
+ public TimeSpan? hotCachePeriod1 { get; set; }
+ public TimeSpan? softDeletePeriod2 { get; set; }
+ public TimeSpan? hotCachePeriod2 { get; set; }
public string eventHubName { get; set; }
public Cluster cluster { get; set; }
public Database database { get; set; }
- public EventHubConnection eventhubConnection { get; set; }
+ public EventHubDataConnection eventhubConnection { get; set; }
public List trustedExternalTenants { get; set; }
+ public string dataFormat { get; set; }
+ public List databasePrincipals { get; set; }
+ public DatabasePrincipal databasePrincipal { get; set; }
+
public KustoTestBase(MockContext context)
{
@@ -103,17 +98,35 @@ private void Initialize()
sku1 = new AzureSku(name: "D13_v2", capacity: 2);
sku2 = new AzureSku(name: "D14_v2", capacity: 2);
- trustedExternalTenants = new List(1) {new TrustedExternalTenant(this.tenantId)};
+ trustedExternalTenants = new List(1) { new TrustedExternalTenant(this.tenantId) };
- hotCachePeriodInDays1 = 2;
- softDeletePeriodInDays1 = 4;
+ hotCachePeriod1 = TimeSpan.FromDays(2);
+ softDeletePeriod1 = TimeSpan.FromDays(4);
- hotCachePeriodInDays2 = 3;
- softDeletePeriodInDays2 = 6;
+ hotCachePeriod2 = TimeSpan.FromDays(3);
+ softDeletePeriod2 = TimeSpan.FromDays(6);
+ dataFormat = "CSV";
cluster = new Cluster(sku: new AzureSku(name: "D13_v2"), location: this.location, trustedExternalTenants: trustedExternalTenants);
- database = new Database(this.location, softDeletePeriodInDays1, hotCachePeriodInDays: hotCachePeriodInDays1);
- eventhubConnection = new EventHubConnection(eventHubResourceId, consumerGroupName, location: this.location, tableName: tableNameForNestedResources1, mappingRuleName: MappingNameForNestedResources1, dataFormat: dataFormat);
+ database = new Database(location: this.location, softDeletePeriod: softDeletePeriod1, hotCachePeriod: hotCachePeriod1);
+ eventhubConnection = new EventHubDataConnection(eventHubResourceId, consumerGroupName, location: this.location);
+
+ databasePrincipal = GetDatabasePrincipalList(dBprincipalMail, "Admin");
+ databasePrincipals = new List {databasePrincipal};
+ }
+
+ private DatabasePrincipal GetDatabasePrincipalList(string userEmail, string role)
+ {
+ return new DatabasePrincipal()
+ {
+ Name = "User1",
+ Email = userEmail,
+ Fqn = $"aaduser={userEmail}",
+ Role = role,
+ Type = "User",
+ AppId = ""
+ };
}
+
}
}
\ No newline at end of file
diff --git a/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoClusterTests.json b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoClusterTests.json
index 02204dd19950..3f178897a34d 100644
--- a/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoClusterTests.json
+++ b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoClusterTests.json
@@ -7,13 +7,15 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a9e65cc-29bd-432a-8bce-a7185cf50860"
+ "496bf279-c8bc-4e7c-a49e-45c4f9d50f7c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -22,7 +24,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:02:05 GMT"
+ "Sun, 10 Feb 2019 09:55:05 GMT"
],
"Pragma": [
"no-cache"
@@ -31,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "631f3959-fdf9-4799-8a09-766da65ccd90"
+ "e56108c4-2187-4655-9992-afc90790fdd1"
],
"x-ms-correlation-request-id": [
- "631f3959-fdf9-4799-8a09-766da65ccd90"
+ "e56108c4-2187-4655-9992-afc90790fdd1"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140206Z:631f3959-fdf9-4799-8a09-766da65ccd90"
+ "UKSOUTH2:20190210T095505Z:e56108c4-2187-4655-9992-afc90790fdd1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,7 +48,7 @@
"nosniff"
],
"Content-Length": [
- "3160"
+ "3764"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -55,23 +57,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdktestrg5154?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzUxNTQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdktestrg9625?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzk2MjU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59f7ba85-8054-46db-9685-734cdf02a2a9"
+ "9e59325d-422d-488e-a3c2-08afc3aee19e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
],
"Content-Type": [
@@ -86,7 +90,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:02:08 GMT"
+ "Sun, 10 Feb 2019 09:55:07 GMT"
],
"Pragma": [
"no-cache"
@@ -95,13 +99,13 @@
"1199"
],
"x-ms-request-id": [
- "9baee01b-c202-4b86-b98c-39b4e1f609f3"
+ "dcc25cbd-ab5c-4a29-91cc-5299a90025b7"
],
"x-ms-correlation-request-id": [
- "9baee01b-c202-4b86-b98c-39b4e1f609f3"
+ "dcc25cbd-ab5c-4a29-91cc-5299a90025b7"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140208Z:9baee01b-c202-4b86-b98c-39b4e1f609f3"
+ "UKSOUTH2:20190210T095507Z:dcc25cbd-ab5c-4a29-91cc-5299a90025b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -119,24 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154\",\r\n \"name\": \"sdktestrg5154\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625\",\r\n \"name\": \"sdktestrg9625\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/clusters/testcluster1576?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjE1NzY/YXBpLXZlcnNpb249MjAxOC0wOS0wNy1wcmV2aWV3",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b802475a-b2d2-41e0-a313-e43668b0d552"
+ "00849941-5856-482e-9d40-7d6f2414b10f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -150,7 +156,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:02:11 GMT"
+ "Sun, 10 Feb 2019 09:55:11 GMT"
],
"Pragma": [
"no-cache"
@@ -159,13 +165,13 @@
"\"\""
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"x-ms-request-id": [
- "c6a1a839-c313-43ec-a1f3-db454c3bd327"
+ "ba2b5ffb-d9de-45c9-9506-e9cb1177c12f"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview"
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21"
],
"X-Powered-By": [
"ASP.NET"
@@ -174,10 +180,10 @@
"199"
],
"x-ms-correlation-request-id": [
- "626e6004-53d2-4644-a707-49c8bbd5b427"
+ "23ee3e79-8c95-4e51-b9c5-2081c79affee"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140212Z:626e6004-53d2-4644-a707-49c8bbd5b427"
+ "UKSOUTH2:20190210T095512Z:23ee3e79-8c95-4e51-b9c5-2081c79affee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -186,7 +192,7 @@
"nosniff"
],
"Content-Length": [
- "460"
+ "531"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,24 +201,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/Clusters/testcluster1576\",\r\n \"name\": \"testcluster1576\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"state\": \"Creating\",\r\n \"queryUri\": null,\r\n \"dataIngestionUri\": null,\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/Clusters/testcluster3619\",\r\n \"name\": \"testcluster3619\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"state\": \"Creating\",\r\n \"queryUri\": null,\r\n \"uri\": null,\r\n \"dataIngestionUri\": null,\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": null,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/clusters/testcluster1576?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjE1NzY/YXBpLXZlcnNpb249MjAxOC0wOS0wNy1wcmV2aWV3",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"capacity\": 2,\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8f721aa-a57b-4314-9e0a-b247389990a3"
+ "2a44c10a-20ca-4965-831f-ec564aa08ac6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -226,7 +234,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:13:42 GMT"
+ "Sun, 10 Feb 2019 10:04:23 GMT"
],
"Pragma": [
"no-cache"
@@ -235,28 +243,28 @@
"\"\""
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "199"
+ "198"
],
"x-ms-request-id": [
- "30aef85a-ada1-48ba-b469-9d6de6f5ed35"
+ "97651ba3-f9ff-44c2-9968-0dac28b87e88"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview"
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "49b5d7a7-1ef4-4d4f-860b-4554cb17c523"
+ "76d52f16-c04f-4f1a-ae07-70d8d677d67c"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141343Z:49b5d7a7-1ef4-4d4f-860b-4554cb17c523"
+ "UKSOUTH2:20190210T100423Z:76d52f16-c04f-4f1a-ae07-70d8d677d67c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -274,18 +282,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/Clusters/testcluster1576\",\r\n \"name\": \"testcluster1576\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/Clusters/testcluster3619\",\r\n \"name\": \"testcluster3619\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -293,13 +303,13 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:02:42 GMT"
+ "Sun, 10 Feb 2019 09:55:42 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
@@ -308,16 +318,16 @@
"299"
],
"x-ms-request-id": [
- "0ec662e0-3f6d-4221-aeca-5873b14365df"
+ "4cb72775-b8bc-4d1c-9784-8917d05e7645"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "fbdc6020-e211-460b-a680-3e692fef1626"
+ "3f36f720-45cf-4144-9d3c-20d2d2f356fe"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140242Z:fbdc6020-e211-460b-a680-3e692fef1626"
+ "UKSOUTH2:20190210T095543Z:3f36f720-45cf-4144-9d3c-20d2d2f356fe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -326,7 +336,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -335,18 +345,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -354,31 +366,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:03:12 GMT"
+ "Sun, 10 Feb 2019 09:56:14 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "298"
+ "299"
],
"x-ms-request-id": [
- "81f42451-389b-43fc-b758-585f4455431b"
+ "45dc36b7-9d7d-4d03-a6b0-7612fd1047ce"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "c28c1a80-a8be-48d6-907a-0e504ecae51f"
+ "a7f692c8-4f86-4de8-9aea-c5c2860e3581"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140313Z:c28c1a80-a8be-48d6-907a-0e504ecae51f"
+ "UKSOUTH2:20190210T095614Z:a7f692c8-4f86-4de8-9aea-c5c2860e3581"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -387,7 +399,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -396,18 +408,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -415,31 +429,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:03:43 GMT"
+ "Sun, 10 Feb 2019 09:56:43 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "297"
+ "298"
],
"x-ms-request-id": [
- "687d695b-08fd-40b8-9700-b3930c8ce0ed"
+ "f7261dd3-7393-423b-bb2a-686785a8e435"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "5ceb02c7-41af-4b43-8643-107bfea007af"
+ "d60b55be-6e71-4fa0-afd4-cf0f1462fafa"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140344Z:5ceb02c7-41af-4b43-8643-107bfea007af"
+ "UKSOUTH2:20190210T095644Z:d60b55be-6e71-4fa0-afd4-cf0f1462fafa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -448,7 +462,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -457,18 +471,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -476,31 +492,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:04:13 GMT"
+ "Sun, 10 Feb 2019 09:57:14 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "296"
+ "297"
],
"x-ms-request-id": [
- "9bc89158-9320-46d8-8ca9-0625cac4a596"
+ "f6d7cef7-bef4-45d2-ba5d-daacd2181e4c"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "6b0bd044-5b02-4581-903a-8a920253b684"
+ "46e137d1-d782-4a45-aca1-b8092fc22438"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140414Z:6b0bd044-5b02-4581-903a-8a920253b684"
+ "UKSOUTH2:20190210T095714Z:46e137d1-d782-4a45-aca1-b8092fc22438"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -509,7 +525,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -518,18 +534,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -537,31 +555,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:04:43 GMT"
+ "Sun, 10 Feb 2019 09:57:45 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "295"
+ "296"
],
"x-ms-request-id": [
- "6f4d1212-40ee-47f0-8351-68ac444d99ba"
+ "26c8ea4c-85a2-48d1-892f-30ab4b350203"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "67bfbb5c-a697-4a52-9b31-8f4dfa89fd27"
+ "b302d8c8-702a-4b18-ae34-a3aa8c7e9657"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140444Z:67bfbb5c-a697-4a52-9b31-8f4dfa89fd27"
+ "UKSOUTH2:20190210T095745Z:b302d8c8-702a-4b18-ae34-a3aa8c7e9657"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +588,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -579,18 +597,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -598,31 +618,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:05:14 GMT"
+ "Sun, 10 Feb 2019 09:58:15 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "294"
+ "295"
],
"x-ms-request-id": [
- "41f90080-43b2-46b7-a3bd-37f88bd285ae"
+ "ba2a5461-41f8-409b-9f2e-939808c83f5b"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "dc3aa3e3-75e5-4820-9786-b5fb06ec5f7c"
+ "30edcf67-16dc-4b93-8eb5-4fc6f06878b0"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140515Z:dc3aa3e3-75e5-4820-9786-b5fb06ec5f7c"
+ "UKSOUTH2:20190210T095816Z:30edcf67-16dc-4b93-8eb5-4fc6f06878b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -631,7 +651,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -640,18 +660,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -659,31 +681,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:05:44 GMT"
+ "Sun, 10 Feb 2019 09:58:45 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "293"
+ "294"
],
"x-ms-request-id": [
- "b9487474-0bbe-4691-82c9-f4a8e780d17e"
+ "b793ab53-37c8-410f-a0c5-25429a9e36d5"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "66d66ab2-22b1-46bc-8007-f9995d786787"
+ "d7bd7ee8-d8fe-4591-9ed8-97e99c254d5f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140545Z:66d66ab2-22b1-46bc-8007-f9995d786787"
+ "UKSOUTH2:20190210T095846Z:d7bd7ee8-d8fe-4591-9ed8-97e99c254d5f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -692,7 +714,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -701,18 +723,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -720,31 +744,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:06:15 GMT"
+ "Sun, 10 Feb 2019 09:59:16 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "292"
+ "293"
],
"x-ms-request-id": [
- "3b6baa3c-9770-44aa-93f4-3a9cbbb657a4"
+ "72b9681c-0d7c-4916-aa67-335370409809"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "c54fa398-0445-4871-9e37-1a6c6e944a8b"
+ "f415f7c1-2180-4406-9fa2-3807dc9af777"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140615Z:c54fa398-0445-4871-9e37-1a6c6e944a8b"
+ "UKSOUTH2:20190210T095916Z:f415f7c1-2180-4406-9fa2-3807dc9af777"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -753,7 +777,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -762,18 +786,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -781,31 +807,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:06:45 GMT"
+ "Sun, 10 Feb 2019 09:59:45 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "291"
+ "292"
],
"x-ms-request-id": [
- "23cb6861-ec10-4e8e-ade6-aa990b7a3c59"
+ "e6600229-d496-4f57-b4b5-66bfd4ea701d"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "bebcb00b-c040-4f80-88de-1a6a8e099665"
+ "f7303376-d747-4d23-bfb9-2ec45f6b88d3"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140646Z:bebcb00b-c040-4f80-88de-1a6a8e099665"
+ "UKSOUTH2:20190210T095946Z:f7303376-d747-4d23-bfb9-2ec45f6b88d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -814,7 +840,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -823,18 +849,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -842,31 +870,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:07:16 GMT"
+ "Sun, 10 Feb 2019 10:00:17 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "290"
+ "291"
],
"x-ms-request-id": [
- "471d3d9f-228d-4bc4-b2ae-3fd237741b44"
+ "69704e3c-90a8-48d0-8cef-9bc203fd387c"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "3d41af71-6f43-49ed-94a8-e3c3134ade14"
+ "06533128-ad97-4c31-9c87-39286bbe6bc5"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140716Z:3d41af71-6f43-49ed-94a8-e3c3134ade14"
+ "UKSOUTH2:20190210T100017Z:06533128-ad97-4c31-9c87-39286bbe6bc5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -875,7 +903,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -884,18 +912,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -903,31 +933,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:07:46 GMT"
+ "Sun, 10 Feb 2019 10:00:47 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "289"
+ "290"
],
"x-ms-request-id": [
- "a80af12b-a537-44fa-b54e-ab0f7ca5aa06"
+ "41b9728d-0a0e-40f6-8f9d-4f6b19a73e26"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "fc6e76f0-e6ab-482e-8f43-1f9957cd70af"
+ "ae45aa08-dcdb-4200-b16a-8b0c37eab967"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140747Z:fc6e76f0-e6ab-482e-8f43-1f9957cd70af"
+ "UKSOUTH2:20190210T100047Z:ae45aa08-dcdb-4200-b16a-8b0c37eab967"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -936,7 +966,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -945,18 +975,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -964,31 +996,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:08:17 GMT"
+ "Sun, 10 Feb 2019 10:01:17 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "288"
+ "289"
],
"x-ms-request-id": [
- "3412eb87-8642-408a-a265-081c946adb43"
+ "15a7a12f-b8e9-45d5-bfa3-fade17683ea4"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "9523f8b9-b63e-4fa9-a4f1-8e4fad3d50e8"
+ "224478ee-9e17-4f01-9145-ca8a814549e9"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140818Z:9523f8b9-b63e-4fa9-a4f1-8e4fad3d50e8"
+ "UKSOUTH2:20190210T100117Z:224478ee-9e17-4f01-9145-ca8a814549e9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -997,7 +1029,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1006,18 +1038,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1025,31 +1059,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:08:47 GMT"
+ "Sun, 10 Feb 2019 10:01:47 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "287"
+ "288"
],
"x-ms-request-id": [
- "c76b48e1-bc59-4203-8393-bad7ddf392c1"
+ "ef5f675d-0e55-4965-ba2b-9281d1ec3ed0"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "61210126-8365-420f-ad00-8c4d30fe7b2d"
+ "4b742ef3-4fad-4ef2-a045-703460a3a0d0"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140848Z:61210126-8365-420f-ad00-8c4d30fe7b2d"
+ "UKSOUTH2:20190210T100148Z:4b742ef3-4fad-4ef2-a045-703460a3a0d0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1058,7 +1092,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1067,18 +1101,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1086,31 +1122,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:09:18 GMT"
+ "Sun, 10 Feb 2019 10:02:18 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "286"
+ "287"
],
"x-ms-request-id": [
- "e5d91bc8-b0dd-4b7d-acc4-e343237ab707"
+ "f1724307-0b70-43a8-ab25-762d95e4d178"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "2db1cfe9-f1e6-4f06-bb4b-ca5df0b19980"
+ "6d56bae6-92d2-422e-b7ef-4d3cb02700d9"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140918Z:2db1cfe9-f1e6-4f06-bb4b-ca5df0b19980"
+ "UKSOUTH2:20190210T100218Z:6d56bae6-92d2-422e-b7ef-4d3cb02700d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1119,7 +1155,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1128,18 +1164,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1147,31 +1185,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:09:48 GMT"
+ "Sun, 10 Feb 2019 10:02:48 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "285"
+ "286"
],
"x-ms-request-id": [
- "6dde562b-c027-46aa-9379-3f0b43a0a5cf"
+ "6315d62e-49fe-4e6f-85b8-58991023d522"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "d4fd8368-ba8a-4192-a621-0e13d1dd60ce"
+ "c2af292e-3ebb-4403-9266-edc39dbd39f2"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T140949Z:d4fd8368-ba8a-4192-a621-0e13d1dd60ce"
+ "UKSOUTH2:20190210T100249Z:c2af292e-3ebb-4403-9266-edc39dbd39f2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1180,7 +1218,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1189,18 +1227,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1208,31 +1248,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:10:19 GMT"
+ "Sun, 10 Feb 2019 10:03:19 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "289"
+ "285"
],
"x-ms-request-id": [
- "238e8e10-b852-458c-92c3-33eda9c150f3"
+ "e31e30cc-f8dd-49b0-841e-2921c2a6c174"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "63d236c1-180b-4c7a-bda6-85327cf4c0c0"
+ "93a95d1c-418b-4266-b0ee-c3f4d27b1aab"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141019Z:63d236c1-180b-4c7a-bda6-85327cf4c0c0"
+ "UKSOUTH2:20190210T100320Z:93a95d1c-418b-4266-b0ee-c3f4d27b1aab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1241,7 +1281,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1250,18 +1290,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1269,31 +1311,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:10:49 GMT"
+ "Sun, 10 Feb 2019 10:03:49 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "288"
+ "284"
],
"x-ms-request-id": [
- "6b7a430a-50d8-4638-aac0-1ac821b9a135"
+ "57e6b91e-16bf-4a4d-bb85-b86a3b9fb4eb"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "d679aee2-e116-45d6-8e9e-8a3b7cbde23a"
+ "d22b3c0f-ff22-4fa7-b2dc-185a68b78ed0"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141049Z:d679aee2-e116-45d6-8e9e-8a3b7cbde23a"
+ "UKSOUTH2:20190210T100350Z:d22b3c0f-ff22-4fa7-b2dc-185a68b78ed0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1302,7 +1344,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1311,18 +1353,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/657edc85-b9d1-42b9-b973-5af7ab38a45c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzY1N2VkYzg1LWI5ZDEtNDJiOS1iOTczLTVhZjdhYjM4YTQ1Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1330,31 +1374,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:11:20 GMT"
+ "Sun, 10 Feb 2019 10:04:20 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "287"
+ "283"
],
"x-ms-request-id": [
- "563ef804-41ab-4cda-acfa-a97556e7c02f"
+ "6da2ea4a-ce8e-47ab-953d-22e15cd143ea"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "6fa84537-246e-447b-983a-ab820235bc79"
+ "b3a6a7c7-a501-4c50-a6c2-ebf71530838f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141120Z:6fa84537-246e-447b-983a-ab820235bc79"
+ "UKSOUTH2:20190210T100421Z:b3a6a7c7-a501-4c50-a6c2-ebf71530838f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1363,7 +1407,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "469"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1372,18 +1416,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"name\": \"657edc85-b9d1-42b9-b973-5af7ab38a45c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T09:55:11.7443249Z\",\r\n \"endTime\": \"2019-02-10T10:04:03.1483559Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"ebd15641-3592-4eca-beb3-ac77cd4f8a23\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1391,31 +1437,34 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:11:50 GMT"
+ "Sun, 10 Feb 2019 10:04:21 GMT"
],
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"\""
+ ],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "286"
+ "299"
],
"x-ms-request-id": [
- "7092f607-0fc6-4567-a2b8-49dc51dbfea5"
+ "eabeacc6-473c-4b53-bf27-398ed6387aba"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "ecde67eb-c594-47eb-a330-f005d793d0e1"
+ "e7b56e2d-4c05-4fb5-b421-f6e54b78a359"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141151Z:ecde67eb-c594-47eb-a330-f005d793d0e1"
+ "UKSOUTH2:20190210T100421Z:e7b56e2d-4c05-4fb5-b421-f6e54b78a359"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1424,7 +1473,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "706"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1433,18 +1482,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/Clusters/testcluster3619\",\r\n \"name\": \"testcluster3619\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"uri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster3619.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8d0e1ed4-75f5-42d0-8adc-a1cdaff0acdb"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1452,31 +1509,34 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:12:20 GMT"
+ "Sun, 10 Feb 2019 10:04:21 GMT"
],
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"\""
+ ],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "285"
+ "298"
],
"x-ms-request-id": [
- "8bc353cb-a869-42df-a469-9fe2c6ade2c0"
+ "121b5340-dbec-4e7e-9955-e862a0bd64b6"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "2b4acc63-a8b5-4f79-a1df-8ec37f10e22b"
+ "e10ce78f-5797-4345-8cb3-185575769bb3"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141221Z:2b4acc63-a8b5-4f79-a1df-8ec37f10e22b"
+ "UKSOUTH2:20190210T100421Z:e10ce78f-5797-4345-8cb3-185575769bb3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1485,7 +1545,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "706"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1494,18 +1554,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/Clusters/testcluster3619\",\r\n \"name\": \"testcluster3619\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"uri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster3619.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7099c5de-5c08-4248-9135-38105196b6a6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzcwOTljNWRlLTVjMDgtNDI0OC05MTM1LTM4MTA1MTk2YjZhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1513,13 +1575,16 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:13:40 GMT"
+ "Sun, 10 Feb 2019 10:12:59 GMT"
],
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"\""
+ ],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
@@ -1528,16 +1593,16 @@
"299"
],
"x-ms-request-id": [
- "8f25ea49-fd43-4b23-bea3-3ff1c61a2186"
+ "f7492fd0-0db1-4226-8d44-2b90de72656a"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "fcd3cf34-ec70-4db2-9dbf-e8722435542c"
+ "afca3eb4-3af5-412d-8573-9b0eaa12e1c2"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141340Z:fcd3cf34-ec70-4db2-9dbf-e8722435542c"
+ "UKSOUTH2:20190210T101259Z:afca3eb4-3af5-412d-8573-9b0eaa12e1c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1546,7 +1611,7 @@
"nosniff"
],
"Content-Length": [
- "437"
+ "706"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1555,18 +1620,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"name\": \"7099c5de-5c08-4248-9135-38105196b6a6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-11-14T14:02:11.7336889Z\",\r\n \"endTime\": \"2018-11-14T14:13:01.7952525Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"6576b66d-5f1f-426e-bd69-a4c541e000d3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/Clusters/testcluster3619\",\r\n \"name\": \"testcluster3619\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"uri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster3619.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/clusters/testcluster1576?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjE1NzY/YXBpLXZlcnNpb249MjAxOC0wOS0wNy1wcmV2aWV3",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7fdf42fb-4cd3-4613-95a1-ed25ca9be416"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1574,7 +1647,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:13:40 GMT"
+ "Sun, 10 Feb 2019 10:18:04 GMT"
],
"Pragma": [
"no-cache"
@@ -1583,25 +1656,25 @@
"\"\""
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "299"
+ "298"
],
"x-ms-request-id": [
- "e59f1d0e-8894-4faf-8233-7d1e1f28dc57"
+ "576b9af7-96a5-4131-b819-fcc210ffc570"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "b1a6d830-21ad-4623-b2f4-70f61d06c636"
+ "c903ed0d-9a81-469f-bc72-ac6c71bf1dae"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141340Z:b1a6d830-21ad-4623-b2f4-70f61d06c636"
+ "UKSOUTH2:20190210T101805Z:c903ed0d-9a81-469f-bc72-ac6c71bf1dae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1610,7 +1683,7 @@
"nosniff"
],
"Content-Length": [
- "588"
+ "706"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1619,24 +1692,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/Clusters/testcluster1576\",\r\n \"name\": \"testcluster1576\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster1576.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster1576.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/Clusters/testcluster3619\",\r\n \"name\": \"testcluster3619\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Stopped\",\r\n \"queryUri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"uri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster3619.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/clusters/testcluster1576?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjE1NzY/YXBpLXZlcnNpb249MjAxOC0wOS0wNy1wcmV2aWV3",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e40ffd6c-c4ee-416a-ba86-59fb46b2a82a"
+ "7a9adda3-2680-49ec-bea7-eb71be1ccf72"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1644,7 +1719,7 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:13:40 GMT"
+ "Sun, 10 Feb 2019 10:26:42 GMT"
],
"Pragma": [
"no-cache"
@@ -1653,25 +1728,25 @@
"\"\""
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "298"
+ "299"
],
"x-ms-request-id": [
- "ee3b3b7f-3e22-4ef9-a602-47d4c329ed7c"
+ "526e94f7-c3e1-42ed-b180-d646aff125c8"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "5bcc7099-978a-4190-ae80-6e83e139edea"
+ "f680419c-f149-4d86-ad1a-017c002d7e9b"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141340Z:5bcc7099-978a-4190-ae80-6e83e139edea"
+ "UKSOUTH2:20190210T102642Z:f680419c-f149-4d86-ad1a-017c002d7e9b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1680,7 +1755,7 @@
"nosniff"
],
"Content-Length": [
- "588"
+ "706"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1689,18 +1764,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/Clusters/testcluster1576\",\r\n \"name\": \"testcluster1576\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster1576.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster1576.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/Clusters/testcluster3619\",\r\n \"name\": \"testcluster3619\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"uri\": \"https://testcluster3619.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster3619.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/clusters/testcluster1576?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjE1NzY/YXBpLXZlcnNpb249MjAxOC0wOS0wNy1wcmV2aWV3",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d137841e-ba17-4a58-bf0b-6d373c58380c"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1708,34 +1791,22 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:21:50 GMT"
+ "Sun, 10 Feb 2019 10:31:46 GMT"
],
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"\""
- ],
- "Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
- ],
- "Vary": [
- "Accept-Encoding"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "299"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "e2b205c6-fd82-420b-b990-04f9938da201"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "87a82b06-9ebd-4d66-bf2a-5194f18351b2"
],
"x-ms-correlation-request-id": [
- "36b419fd-fd0e-4ae9-8fc1-3705c6996bb4"
+ "87a82b06-9ebd-4d66-bf2a-5194f18351b2"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142151Z:36b419fd-fd0e-4ae9-8fc1-3705c6996bb4"
+ "UKSOUTH2:20190210T103147Z:87a82b06-9ebd-4d66-bf2a-5194f18351b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1744,7 +1815,7 @@
"nosniff"
],
"Content-Length": [
- "588"
+ "157"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1753,24 +1824,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/Clusters/testcluster1576\",\r\n \"name\": \"testcluster1576\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster1576.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster1576.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Kusto/clusters/testcluster3619' under resource group 'sdktestrg9625' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/clusters/testcluster1576?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjE1NzY/YXBpLXZlcnNpb249MjAxOC0wOS0wNy1wcmV2aWV3",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "f48352e0-24fd-4923-829a-c87db09c1c11"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1778,22 +1845,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:27:57 GMT"
+ "Sun, 10 Feb 2019 10:04:52 GMT"
],
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "282"
],
"x-ms-request-id": [
- "ae1471e4-65ee-4bb0-b197-7314745eab65"
+ "32dda34e-95d6-4be0-a695-009c3e358304"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
],
"x-ms-correlation-request-id": [
- "ae1471e4-65ee-4bb0-b197-7314745eab65"
+ "1f22b498-161a-4dc6-9ce5-74388f6dae1e"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142757Z:ae1471e4-65ee-4bb0-b197-7314745eab65"
+ "UKSOUTH2:20190210T100453Z:1f22b498-161a-4dc6-9ce5-74388f6dae1e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1802,7 +1878,7 @@
"nosniff"
],
"Content-Length": [
- "157"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1811,18 +1887,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Kusto/clusters/testcluster1576' under resource group 'sdktestrg5154' was not found.\"\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1830,31 +1908,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:14:12 GMT"
+ "Sun, 10 Feb 2019 10:05:23 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "298"
+ "289"
],
"x-ms-request-id": [
- "77d2ddb3-b89c-44f7-8342-5c6aa406cfd6"
+ "f29deb44-fff7-4ff8-9994-426aa3ec0715"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "c954fc18-973f-40f2-ac17-e4a62f72f3cb"
+ "c61859b6-9165-4137-b559-b80d1069cfe8"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141413Z:c954fc18-973f-40f2-ac17-e4a62f72f3cb"
+ "UKSOUTH2:20190210T100524Z:c61859b6-9165-4137-b559-b80d1069cfe8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1863,7 +1941,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1872,18 +1950,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1891,31 +1971,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:14:43 GMT"
+ "Sun, 10 Feb 2019 10:05:54 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "297"
+ "288"
],
"x-ms-request-id": [
- "d9e6ed2f-5572-4830-be57-624bf1e64228"
+ "41a9aa65-7f98-4bba-aaf3-dc5d2d072850"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "d2d6e4cd-0bb2-48f6-9d2b-50bdecacf67a"
+ "c335f234-5ff0-47f0-b08a-836bb8e8774f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181114T141443Z:d2d6e4cd-0bb2-48f6-9d2b-50bdecacf67a"
+ "UKSOUTH2:20190210T100554Z:c335f234-5ff0-47f0-b08a-836bb8e8774f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1924,7 +2004,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1933,18 +2013,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -1952,31 +2034,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:15:14 GMT"
+ "Sun, 10 Feb 2019 10:06:24 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "299"
+ "287"
],
"x-ms-request-id": [
- "e46e69e9-cc8d-4dd8-9dae-ff4a2a21be05"
+ "8267fb82-87cf-4876-b9b3-2306c191d899"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "8dc5fd4d-0ced-4595-9c91-dee3d236cb34"
+ "61e4fadb-cfec-4d0e-9a5a-50aac7174e8b"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141514Z:8dc5fd4d-0ced-4595-9c91-dee3d236cb34"
+ "UKSOUTH2:20190210T100625Z:61e4fadb-cfec-4d0e-9a5a-50aac7174e8b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1985,7 +2067,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1994,18 +2076,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2013,31 +2097,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:15:44 GMT"
+ "Sun, 10 Feb 2019 10:06:54 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "298"
+ "286"
],
"x-ms-request-id": [
- "17af5025-a3d3-4aba-b998-a68e7c053276"
+ "ecd852e8-d89b-4b4d-b022-a36e479bddb7"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "e1daa87e-e8cb-4226-b5b8-90c2179abf5c"
+ "42f1a2eb-708e-46de-8dfb-0aadda5b1cec"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141544Z:e1daa87e-e8cb-4226-b5b8-90c2179abf5c"
+ "UKSOUTH2:20190210T100655Z:42f1a2eb-708e-46de-8dfb-0aadda5b1cec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2046,7 +2130,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2055,18 +2139,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2074,31 +2160,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:16:14 GMT"
+ "Sun, 10 Feb 2019 10:07:25 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "297"
+ "285"
],
"x-ms-request-id": [
- "745b7ede-60de-44ec-8fe5-941961f1fa1a"
+ "1cea9ba1-4914-4a30-b542-a6e9ccbfad72"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "33b1de4a-397f-4268-83d0-0ed4aea2da4d"
+ "fed93050-f3a9-4621-8c7a-fe62c4a35f96"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141615Z:33b1de4a-397f-4268-83d0-0ed4aea2da4d"
+ "UKSOUTH2:20190210T100725Z:fed93050-f3a9-4621-8c7a-fe62c4a35f96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2107,7 +2193,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2116,18 +2202,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2135,31 +2223,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:16:45 GMT"
+ "Sun, 10 Feb 2019 10:07:55 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "296"
+ "284"
],
"x-ms-request-id": [
- "c2bd5a4f-dcff-4b2e-a652-223e44cf5648"
+ "cf215de8-0089-4674-a287-37a720aff18f"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "ab7dacd3-3f54-44c8-9d43-d96703a5fe6f"
+ "84a6daaa-c595-4845-9de8-d53c69b431be"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141645Z:ab7dacd3-3f54-44c8-9d43-d96703a5fe6f"
+ "UKSOUTH2:20190210T100755Z:84a6daaa-c595-4845-9de8-d53c69b431be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2168,7 +2256,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2177,18 +2265,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2196,31 +2286,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:17:16 GMT"
+ "Sun, 10 Feb 2019 10:08:26 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "295"
+ "283"
],
"x-ms-request-id": [
- "fec8fb93-10eb-4416-a48e-8e70ba340e0b"
+ "f29d738e-26c8-4b48-844f-90499890f894"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "31351e54-24f2-4c63-9c0c-7762ca4f6ba2"
+ "342273d8-821c-4d4b-a0ab-2e894a360a97"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141716Z:31351e54-24f2-4c63-9c0c-7762ca4f6ba2"
+ "UKSOUTH2:20190210T100826Z:342273d8-821c-4d4b-a0ab-2e894a360a97"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2229,7 +2319,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2238,18 +2328,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2257,31 +2349,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:17:45 GMT"
+ "Sun, 10 Feb 2019 10:08:56 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "294"
+ "282"
],
"x-ms-request-id": [
- "7fad7543-e523-43b9-a811-5503a402816d"
+ "44dae89c-c8e7-457a-b5f0-919a02e47e4b"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "b29387fa-ef23-419d-b6e8-3f7755f9319b"
+ "9dd14d77-041d-4a4d-a3cc-7018fa13973c"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141746Z:b29387fa-ef23-419d-b6e8-3f7755f9319b"
+ "UKSOUTH2:20190210T100856Z:9dd14d77-041d-4a4d-a3cc-7018fa13973c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2290,7 +2382,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2299,18 +2391,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2318,31 +2412,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:18:17 GMT"
+ "Sun, 10 Feb 2019 10:09:26 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "293"
+ "281"
],
"x-ms-request-id": [
- "95b04248-b034-4fc7-ae65-ae8fe78052d0"
+ "638761bf-9d73-40bf-a617-c8948a11bb10"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "0225a4c3-3ba7-44e6-ba45-d73eb7a1530c"
+ "5701e8ff-a39c-40a8-a2c4-de83079fe1b3"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141818Z:0225a4c3-3ba7-44e6-ba45-d73eb7a1530c"
+ "UKSOUTH2:20190210T100927Z:5701e8ff-a39c-40a8-a2c4-de83079fe1b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2351,7 +2445,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2360,18 +2454,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2379,31 +2475,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:18:48 GMT"
+ "Sun, 10 Feb 2019 10:09:56 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "292"
+ "280"
],
"x-ms-request-id": [
- "0f9c725f-dc07-48c4-ad18-a8b1e475e2a4"
+ "07914130-6e5d-491d-97da-28dc7f2e2671"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "e88f3d27-110a-4ec8-922f-6a65d91d5473"
+ "107faf05-cfdd-483b-9623-531cdbc0840d"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141848Z:e88f3d27-110a-4ec8-922f-6a65d91d5473"
+ "UKSOUTH2:20190210T100957Z:107faf05-cfdd-483b-9623-531cdbc0840d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2412,7 +2508,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2421,18 +2517,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2440,31 +2538,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:19:17 GMT"
+ "Sun, 10 Feb 2019 10:10:27 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "291"
+ "289"
],
"x-ms-request-id": [
- "f62da855-6be4-4aef-adf7-dcde268a9f67"
+ "7ce584f5-0ad3-4b43-98c0-09d6f6981b86"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "0bbea98d-0c60-4a9a-a1b1-c4664e1e9467"
+ "4fbbf745-86cf-4a3e-8810-bf7184cf0c74"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141918Z:0bbea98d-0c60-4a9a-a1b1-c4664e1e9467"
+ "UKSOUTH2:20190210T101028Z:4fbbf745-86cf-4a3e-8810-bf7184cf0c74"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2473,7 +2571,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2482,18 +2580,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2501,31 +2601,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:19:49 GMT"
+ "Sun, 10 Feb 2019 10:10:57 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "290"
+ "288"
],
"x-ms-request-id": [
- "44ee5472-8f64-451f-9c86-af18f9f1c07a"
+ "7208ce2a-6566-4a4d-95d6-93258804f210"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "95c304c5-b991-47e0-803f-8977ef623dcc"
+ "76eb8516-25e5-4bbf-ae67-db179389db5b"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T141949Z:95c304c5-b991-47e0-803f-8977ef623dcc"
+ "UKSOUTH2:20190210T101058Z:76eb8516-25e5-4bbf-ae67-db179389db5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2534,7 +2634,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2543,18 +2643,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2562,31 +2664,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:20:19 GMT"
+ "Sun, 10 Feb 2019 10:11:27 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "289"
+ "287"
],
"x-ms-request-id": [
- "2638004d-63fd-4282-ad0d-48dce79053f0"
+ "84c80f23-4840-43c4-838b-abd20ac02f5f"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "69a1906c-12e7-4fb9-aad5-ea624eb3f244"
+ "90d3ada6-3886-4552-bcad-bf5473f84751"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142019Z:69a1906c-12e7-4fb9-aad5-ea624eb3f244"
+ "UKSOUTH2:20190210T101128Z:90d3ada6-3886-4552-bcad-bf5473f84751"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2595,7 +2697,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2604,18 +2706,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2623,31 +2727,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:20:48 GMT"
+ "Sun, 10 Feb 2019 10:11:58 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "288"
+ "286"
],
"x-ms-request-id": [
- "9d6552ac-6be9-4cef-91e8-81857afa8a94"
+ "f52bc1b9-eb2e-45d3-83b9-a4bbc29e0bcd"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "8002d9b8-2cb9-4d53-a602-e4c8f51e280a"
+ "1c981056-81ab-4ca5-9d4a-9e0e3e4f2159"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142049Z:8002d9b8-2cb9-4d53-a602-e4c8f51e280a"
+ "UKSOUTH2:20190210T101158Z:1c981056-81ab-4ca5-9d4a-9e0e3e4f2159"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2656,7 +2760,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2665,18 +2769,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2684,31 +2790,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:21:20 GMT"
+ "Sun, 10 Feb 2019 10:12:29 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "287"
+ "285"
],
"x-ms-request-id": [
- "1b03e05a-4d0d-4068-bcbf-fadc57a3b181"
+ "24e79305-97e5-4a99-9e6b-9cb87cab197a"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "daa32d36-0531-460b-8595-928db8aa0dc1"
+ "a1f84279-5d0c-4c84-8ca4-1bc6fdb231f7"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142120Z:daa32d36-0531-460b-8595-928db8aa0dc1"
+ "UKSOUTH2:20190210T101229Z:a1f84279-5d0c-4c84-8ca4-1bc6fdb231f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2717,7 +2823,7 @@
"nosniff"
],
"Content-Length": [
- "447"
+ "477"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2726,18 +2832,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08b94275-647e-4d21-8d65-fd65f430cca6?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4Yjk0Mjc1LTY0N2UtNGQyMS04ZDY1LWZkNjVmNDMwY2NhNj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/e9a0e10c-baec-4498-8c70-60f34aaad5d5?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2U5YTBlMTBjLWJhZWMtNDQ5OC04YzcwLTYwZjM0YWFhZDVkNT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2745,31 +2853,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:21:50 GMT"
+ "Sun, 10 Feb 2019 10:12:59 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "286"
+ "284"
],
"x-ms-request-id": [
- "b38ff8a6-926e-4615-bd31-47dc3f2135ba"
+ "a4425369-0cae-4547-abf3-01b231e150ee"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "6435adf2-71ee-4e91-bdea-349cb2e5b703"
+ "7d199717-eb57-4183-bdaf-a34c0f1564cd"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142150Z:6435adf2-71ee-4e91-bdea-349cb2e5b703"
+ "UKSOUTH2:20190210T101259Z:7d199717-eb57-4183-bdaf-a34c0f1564cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2778,7 +2886,7 @@
"nosniff"
],
"Content-Length": [
- "449"
+ "481"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2787,24 +2895,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"name\": \"08b94275-647e-4d21-8d65-fd65f430cca6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-11-14T14:13:41.7531355Z\",\r\n \"endTime\": \"2018-11-14T14:21:47.7676429Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"ffdd58f7-336a-4259-afda-52d29d06d516\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"name\": \"e9a0e10c-baec-4498-8c70-60f34aaad5d5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T10:04:22.6055358Z\",\r\n \"endTime\": \"2019-02-10T10:12:56.3376675Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ServiceConfigurationAlter\",\r\n \"RootActivityId\": \"e8c1e71c-af5f-4c2e-9f09-2141771e2000\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg5154/providers/Microsoft.Kusto/clusters/testcluster1576?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzUxNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjE1NzY/YXBpLXZlcnNpb249MjAxOC0wOS0wNy1wcmV2aWV3",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619/stop?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTkvc3RvcD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12b3ccf9-59c9-4843-a4fa-2c1abcc060db"
+ "5515677f-5761-4084-817f-5bc9d345e0ed"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2812,34 +2922,34 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:21:51 GMT"
+ "Sun, 10 Feb 2019 10:12:59 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview&operationResultResponseType=Location"
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21&operationResultResponseType=Location"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "22caefaf-a3fb-4cba-b55c-15cc462691e3"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview"
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21"
],
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
- ],
- "x-ms-request-id": [
- "18dbd249-d5f2-4ece-9c75-4da05337becd"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "18dbd249-d5f2-4ece-9c75-4da05337becd"
+ "43b67868-a2fc-46fe-b771-97525bce8af7"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142152Z:18dbd249-d5f2-4ece-9c75-4da05337becd"
+ "UKSOUTH2:20190210T101300Z:43b67868-a2fc-46fe-b771-97525bce8af7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2858,14 +2968,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2873,31 +2985,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:22:21 GMT"
+ "Sun, 10 Feb 2019 10:13:30 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "285"
+ "283"
],
"x-ms-request-id": [
- "f6b51e4d-5dfa-4702-a9d9-5f596ddc90d4"
+ "44359955-eb4a-4d97-a7fb-6346e8afdd86"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "e284da38-6443-48f8-a6a5-3070ccc4ffcb"
+ "dd910439-62ef-498d-ac88-a3207425a3b3"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142222Z:e284da38-6443-48f8-a6a5-3070ccc4ffcb"
+ "UKSOUTH2:20190210T101330Z:dd910439-62ef-498d-ac88-a3207425a3b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2906,7 +3018,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2915,18 +3027,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2934,31 +3048,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:22:52 GMT"
+ "Sun, 10 Feb 2019 10:14:00 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "284"
+ "282"
],
"x-ms-request-id": [
- "1207691a-2d1a-4bd0-8ed5-06241af148ef"
+ "94fca83c-d2ae-4fd5-b8fb-15de74cf647f"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "fceea6a2-cf4f-49cd-8c09-7c8663177c4e"
+ "c4572e99-34bc-44de-8dc7-2db84bba9a42"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142253Z:fceea6a2-cf4f-49cd-8c09-7c8663177c4e"
+ "UKSOUTH2:20190210T101400Z:c4572e99-34bc-44de-8dc7-2db84bba9a42"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2967,7 +3081,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2976,18 +3090,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -2995,31 +3111,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:23:22 GMT"
+ "Sun, 10 Feb 2019 10:14:31 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "283"
+ "281"
],
"x-ms-request-id": [
- "389821bf-3ad0-4d3b-8005-54a2ff60aca4"
+ "bf7b00c1-62ac-48fa-8e72-5fda42b17bcc"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "77152791-6829-42c5-8d61-0c9a90bbdb67"
+ "3f242ba3-24f5-43e1-a1b9-0628feeeef44"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142323Z:77152791-6829-42c5-8d61-0c9a90bbdb67"
+ "UKSOUTH2:20190210T101431Z:3f242ba3-24f5-43e1-a1b9-0628feeeef44"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3028,7 +3144,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3037,18 +3153,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3056,31 +3174,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:23:53 GMT"
+ "Sun, 10 Feb 2019 10:15:01 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "282"
+ "290"
],
"x-ms-request-id": [
- "9e8bcd4b-4902-4067-975a-0b005f66ebad"
+ "dec98567-5b5e-46b1-9c2a-f0401e336320"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "db0f23d2-328e-46cc-92bd-cbf0fa0c164f"
+ "7a9c4404-1028-4f96-b7b1-7e315967032d"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142353Z:db0f23d2-328e-46cc-92bd-cbf0fa0c164f"
+ "UKSOUTH2:20190210T101501Z:7a9c4404-1028-4f96-b7b1-7e315967032d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3089,7 +3207,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3098,18 +3216,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3117,31 +3237,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:24:23 GMT"
+ "Sun, 10 Feb 2019 10:15:31 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "281"
+ "289"
],
"x-ms-request-id": [
- "022456e6-55eb-433d-a53b-93da224f0b07"
+ "64c2fe13-2ae5-4ace-aff6-3e1532d693dd"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "4f936092-ec3d-45e2-ad9e-1aa5873c85a8"
+ "25dc9ace-b92b-4bd6-85e7-a594f81b6d72"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142424Z:4f936092-ec3d-45e2-ad9e-1aa5873c85a8"
+ "UKSOUTH2:20190210T101532Z:25dc9ace-b92b-4bd6-85e7-a594f81b6d72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3150,7 +3270,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3159,18 +3279,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3178,31 +3300,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:24:53 GMT"
+ "Sun, 10 Feb 2019 10:16:02 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "280"
+ "288"
],
"x-ms-request-id": [
- "f0fd802a-5fb0-48db-83bf-851aa6c19fe6"
+ "697b5fc0-f84d-4411-a1c7-7dc1cc2a2a2f"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "16cda36d-1ed8-40cb-be03-454a98402b8a"
+ "ffcdd7ea-52ab-45a4-8b57-e987035d380b"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142454Z:16cda36d-1ed8-40cb-be03-454a98402b8a"
+ "UKSOUTH2:20190210T101602Z:ffcdd7ea-52ab-45a4-8b57-e987035d380b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3211,7 +3333,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3220,18 +3342,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3239,31 +3363,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:25:24 GMT"
+ "Sun, 10 Feb 2019 10:16:32 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "289"
+ "287"
],
"x-ms-request-id": [
- "2b71b182-9ecd-49a9-bdf3-fc1117b1d66a"
+ "b92ebdd0-a086-4080-88be-c805068ee13e"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "32bd15b6-c009-4e3b-a175-6aab9dba38fb"
+ "bb9fd5e1-9c54-425e-8230-25eb8d095d73"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142524Z:32bd15b6-c009-4e3b-a175-6aab9dba38fb"
+ "UKSOUTH2:20190210T101633Z:bb9fd5e1-9c54-425e-8230-25eb8d095d73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3272,7 +3396,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3281,18 +3405,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3300,31 +3426,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:25:54 GMT"
+ "Sun, 10 Feb 2019 10:17:03 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "288"
+ "286"
],
"x-ms-request-id": [
- "96c61757-d734-448d-ba27-60d9d2885763"
+ "1b9674ec-f4a8-4828-a83b-65de1cabdc7b"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "9310f40b-25c2-483c-9ba4-cf24a7af0f2e"
+ "21158496-e3d3-4ee5-8f90-29812ef23ce7"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142555Z:9310f40b-25c2-483c-9ba4-cf24a7af0f2e"
+ "UKSOUTH2:20190210T101703Z:21158496-e3d3-4ee5-8f90-29812ef23ce7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3333,7 +3459,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3342,18 +3468,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3361,31 +3489,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:26:25 GMT"
+ "Sun, 10 Feb 2019 10:17:32 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "287"
+ "285"
],
"x-ms-request-id": [
- "822ee557-e4ee-4916-bb14-3b1bbb25ae06"
+ "88b28c30-f011-4970-a638-c5948ad51c3d"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "1316ee19-8387-4753-bb54-7e0983209b25"
+ "2376e421-a4d5-4c4e-860d-5153d975fc45"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142625Z:1316ee19-8387-4753-bb54-7e0983209b25"
+ "UKSOUTH2:20190210T101733Z:2376e421-a4d5-4c4e-860d-5153d975fc45"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3394,7 +3522,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "466"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3403,18 +3531,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:13:00.3847523Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3422,31 +3552,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:26:55 GMT"
+ "Sun, 10 Feb 2019 10:18:03 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "286"
+ "284"
],
"x-ms-request-id": [
- "9bd754ee-29ec-4e12-902d-6aae164032f2"
+ "4c75079e-bc9d-4849-9926-514590397125"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "80bf2b78-1e3a-418c-852a-41ccc0b210fe"
+ "9eb346bf-3a24-40eb-96ee-00e83989f919"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142655Z:80bf2b78-1e3a-418c-852a-41ccc0b210fe"
+ "UKSOUTH2:20190210T101803Z:9eb346bf-3a24-40eb-96ee-00e83989f919"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3455,7 +3585,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "470"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3464,18 +3594,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"name\": \"9abfc2ef-f00f-468f-9ce3-6bdf816f64ef\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T10:13:00.3222808Z\",\r\n \"endTime\": \"2019-02-10T10:17:48.8617626Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterSuspend\",\r\n \"RootActivityId\": \"00803e42-7d14-4f69-9d79-412b8d181247\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9abfc2ef-f00f-468f-9ce3-6bdf816f64ef?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzlhYmZjMmVmLWYwMGYtNDY4Zi05Y2UzLTZiZGY4MTZmNjRlZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3483,31 +3615,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:27:25 GMT"
+ "Sun, 10 Feb 2019 10:18:04 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "285"
+ "283"
],
"x-ms-request-id": [
- "6f38c42a-9f0c-44fd-bff4-e12acbe7547b"
+ "a910bf32-937f-4f16-9aca-6cebb9b10d76"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "163a3208-541b-4ec8-ba85-dcde3a46721e"
+ "6dd652c6-2ad7-41f6-87e5-5a56a0bdfc22"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142726Z:163a3208-541b-4ec8-ba85-dcde3a46721e"
+ "UKSOUTH2:20190210T101804Z:6dd652c6-2ad7-41f6-87e5-5a56a0bdfc22"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3516,7 +3648,7 @@
"nosniff"
],
"Content-Length": [
- "435"
+ "11"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3525,18 +3657,89 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "\"Completed\"",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619/start?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTkvc3RhcnQ/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87c2b31c-dc54-49d7-a024-895c471f8dc7"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:18:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "12b29704-a4e5-4324-988b-3ed2c14435a6"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "87bfff8e-845b-4a81-8b7c-bfe51ff996a2"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T101805Z:87bfff8e-845b-4a81-8b7c-bfe51ff996a2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3544,31 +3747,31 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:27:56 GMT"
+ "Sun, 10 Feb 2019 10:18:35 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "284"
+ "282"
],
"x-ms-request-id": [
- "ddeb4546-fa1a-4e80-820e-c62efaef8775"
+ "26ae2571-7a33-4dba-9147-c8f60b98530a"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "1d01cdcd-06e1-4436-986f-d1a5f06db9da"
+ "b0ccb49f-254c-42bf-93b9-4fb247393a2d"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142756Z:1d01cdcd-06e1-4436-986f-d1a5f06db9da"
+ "UKSOUTH2:20190210T101835Z:b0ccb49f-254c-42bf-93b9-4fb247393a2d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3577,7 +3780,7 @@
"nosniff"
],
"Content-Length": [
- "437"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3586,18 +3789,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"name\": \"c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-11-14T14:21:51.9126118Z\",\r\n \"endTime\": \"2018-11-14T14:27:40.2593621Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"e7336627-03d4-486f-bba8-295d3ed1adb0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c5226fc8-88d4-4c2b-bf12-3d981e6fdfa5?api-version=2018-09-07-preview&operationResultResponseType=Location",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M1MjI2ZmM4LTg4ZDQtNGMyYi1iZjEyLTNkOTgxZTZmZGZhNT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXcmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -3605,31 +3810,1801 @@
"no-cache"
],
"Date": [
- "Wed, 14 Nov 2018 14:27:56 GMT"
+ "Sun, 10 Feb 2019 10:19:05 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "283"
+ "281"
+ ],
+ "x-ms-request-id": [
+ "777103f4-7185-4fa5-84b1-76641cffcbcb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "6014d56b-93fa-45c9-8547-0caff4256a4d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T101905Z:6014d56b-93fa-45c9-8547-0caff4256a4d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:19:35 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "280"
+ ],
+ "x-ms-request-id": [
+ "8e4e373e-d13a-4a76-b8ed-f576f6dfefe9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "37692114-de7d-4849-9d03-d4e4696f3c53"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T101936Z:37692114-de7d-4849-9d03-d4e4696f3c53"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:20:06 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "738a0a23-6746-4d4b-a836-9651dcb08c53"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "572f8667-b40a-4285-ba8c-52eb26f445de"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102006Z:572f8667-b40a-4285-ba8c-52eb26f445de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:20:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "524d2b05-16f9-42c1-a25d-5676ec58f4f7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4728e6e-b701-416f-9eac-0ec1fb543fc3"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102037Z:b4728e6e-b701-416f-9eac-0ec1fb543fc3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:21:06 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "33365680-0b0a-43bf-ac0e-18b97114c2c3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "134c11e3-e8eb-4778-8618-8005bed79c3a"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102107Z:134c11e3-e8eb-4778-8618-8005bed79c3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:21:36 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "384f078c-d506-420a-a137-d226df871dad"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "57dd7972-d39c-4d1d-af80-fcf0c2c013af"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102137Z:57dd7972-d39c-4d1d-af80-fcf0c2c013af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:22:07 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
+ ],
+ "x-ms-request-id": [
+ "47a76354-cda7-4935-87fe-a16e52a2ade2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "ecfe2320-107a-48d4-b4c2-00a50671a618"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102208Z:ecfe2320-107a-48d4-b4c2-00a50671a618"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:22:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "283"
+ ],
+ "x-ms-request-id": [
+ "3e5bc495-cbfe-4773-86d0-576b3bca1411"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ec0201d-4a95-4ce7-ae4c-c72ac7e29850"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102238Z:5ec0201d-4a95-4ce7-ae4c-c72ac7e29850"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:23:07 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "282"
+ ],
+ "x-ms-request-id": [
+ "15a4fd9b-20c8-4abf-af5a-57decdf52195"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9afcbb1-059e-4999-9752-d234f3e4cecd"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102308Z:a9afcbb1-059e-4999-9752-d234f3e4cecd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:23:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "281"
+ ],
+ "x-ms-request-id": [
+ "cb3afac8-81bf-468c-822c-602fa6764ffa"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f106770-95ff-4a7e-ad41-59808943990b"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102339Z:0f106770-95ff-4a7e-ad41-59808943990b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:24:09 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "280"
+ ],
+ "x-ms-request-id": [
+ "cfb712ce-d186-4760-be04-778305ad339f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c60cb69-6ec0-472f-a88a-25ff79cb9add"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102409Z:3c60cb69-6ec0-472f-a88a-25ff79cb9add"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:24:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "279"
+ ],
+ "x-ms-request-id": [
+ "46da8794-9f94-4a1b-929f-c8d6d83aced3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "d15b6f66-cf2c-4bdc-bd87-f64ecfd1a35b"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102440Z:d15b6f66-cf2c-4bdc-bd87-f64ecfd1a35b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:25:10 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "289"
+ ],
+ "x-ms-request-id": [
+ "8573b5a6-03bc-4361-8618-1a5074026886"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee8b5e26-d691-4621-9455-fd05cf402f0e"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102510Z:ee8b5e26-d691-4621-9455-fd05cf402f0e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:25:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "955b38af-8a6a-47ae-b0b4-780c9a4a35d7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "64a2903f-8ff1-487c-bf14-4592f1559f83"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102540Z:64a2903f-8ff1-487c-bf14-4592f1559f83"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:26:11 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "61d13d20-57e7-4244-99c2-2db1db705dc6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "3131a098-76b4-430c-930a-aa82dcb44c7a"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102611Z:3131a098-76b4-430c-930a-aa82dcb44c7a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:18:05.5003833Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:26:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "c32b5429-ff76-4002-8562-30f25d83f079"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb54941a-37c4-420e-bca9-3ebd5ea85d17"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102641Z:fb54941a-37c4-420e-bca9-3ebd5ea85d17"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"name\": \"9439b08e-840f-43fd-af61-b12276ac7f39\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T10:18:05.3597723Z\",\r\n \"endTime\": \"2019-02-10T10:26:32.7742898Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterResume\",\r\n \"RootActivityId\": \"9b7b3a27-d0ee-4709-bc95-a7ee978b4ab6\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/9439b08e-840f-43fd-af61-b12276ac7f39?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk0MzliMDhlLTg0MGYtNDNmZC1hZjYxLWIxMjI3NmFjN2YzOT9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:26:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "16d57f30-f3c0-4571-ac84-668f2fbfc38b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "97fb915b-fac6-470c-b92d-5ed6afe05440"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102641Z:97fb915b-fac6-470c-b92d-5ed6afe05440"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "11"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\"Completed\"",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg9625/providers/Microsoft.Kusto/clusters/testcluster3619?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzk2MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjM2MTk/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fdead0b9-9d35-4302-8f1d-e3f6c5005327"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:26:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "89ac2b1f-6734-473f-97ba-5f4079ddbcef"
+ ],
+ "x-ms-correlation-request-id": [
+ "89ac2b1f-6734-473f-97ba-5f4079ddbcef"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102642Z:89ac2b1f-6734-473f-97ba-5f4079ddbcef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:27:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
+ ],
+ "x-ms-request-id": [
+ "5292dee0-f53b-43d2-9540-f6d41f13d729"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff176fe2-4b6a-4159-9b7f-44c2d0d2d7f0"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102712Z:ff176fe2-4b6a-4159-9b7f-44c2d0d2d7f0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:27:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "283"
+ ],
+ "x-ms-request-id": [
+ "2f0f652c-73e2-4fb3-b3c3-3e7562e7c2a6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5740fb6-c0bd-4b3e-b59a-1bfa3202c1cc"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102743Z:a5740fb6-c0bd-4b3e-b59a-1bfa3202c1cc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:28:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "282"
+ ],
+ "x-ms-request-id": [
+ "e57d1e61-add3-4df8-8770-f1ca4515cc92"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "96492084-3a64-49d0-a66d-07da61cc2ebf"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102813Z:96492084-3a64-49d0-a66d-07da61cc2ebf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:28:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "281"
+ ],
+ "x-ms-request-id": [
+ "d6dda52c-6bdc-40ef-8c1d-2604bd9f3c5f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae94eb02-c7c2-409d-9de5-da9608db3ff5"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102844Z:ae94eb02-c7c2-409d-9de5-da9608db3ff5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:29:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "280"
+ ],
+ "x-ms-request-id": [
+ "0b370285-4340-4e4b-948a-db963ea1357f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "c72450d6-bc14-4e87-95bd-044541012605"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102914Z:c72450d6-bc14-4e87-95bd-044541012605"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:29:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "279"
+ ],
+ "x-ms-request-id": [
+ "a95b755c-d3be-48ba-b3ab-1da21e0458ab"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "91e7af9b-cd06-4bef-b6f8-ea8168447312"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T102944Z:91e7af9b-cd06-4bef-b6f8-ea8168447312"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:30:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "ae48ba3c-0bb1-4693-a4c1-5fd537361ea3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7293d3a-97c0-46ec-8da5-755a39fb6f3d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T103015Z:c7293d3a-97c0-46ec-8da5-755a39fb6f3d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:30:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "36a83726-64d9-40f2-a814-5909b32be6f5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "455a9769-bb24-4cb2-a62b-03f0670c5dbc"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T103045Z:455a9769-bb24-4cb2-a62b-03f0670c5dbc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:31:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "18d7e33e-9094-4c79-8c6e-871817934a50"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "393a1255-b506-4877-80eb-19bcb114cc8d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T103115Z:393a1255-b506-4877-80eb-19bcb114cc8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:31:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "42a63660-a217-4883-8318-5979f9f7d7ca"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "23bee625-6ee2-458e-8a27-42e4ad178b43"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190210T103146Z:23bee625-6ee2-458e-8a27-42e4ad178b43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"name\": \"75098a58-1aa7-4123-b934-97012f4f7da4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T10:26:42.5658314Z\",\r\n \"endTime\": \"2019-02-10T10:31:29.7883766Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"eb659ee2-accb-4261-849c-d42d4479db19\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/75098a58-1aa7-4123-b934-97012f4f7da4?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc1MDk4YTU4LTFhYTctNDEyMy1iOTM0LTk3MDEyZjRmN2RhND9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 10:31:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
],
"x-ms-request-id": [
- "b1d63720-ccae-4f31-b715-747b440f6e12"
+ "6d2274c5-ebef-4c07-8944-516cf361b71b"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "1959dfa3-79c1-4e0d-b6d5-c92205c1015d"
+ "14922787-8a26-48ad-b83f-1bc828c4de63"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181114T142757Z:1959dfa3-79c1-4e0d-b6d5-c92205c1015d"
+ "UKSOUTH2:20190210T103146Z:14922787-8a26-48ad-b83f-1bc828c4de63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3653,10 +5628,10 @@
],
"Names": {
"Initialize": [
- "sdktestrg5154",
- "testcluster1576",
- "testdatabase5840",
- "eventhubConection5631"
+ "sdktestrg9625",
+ "testcluster3619",
+ "testdatabase9917",
+ "eventhubConection6183"
]
},
"Variables": {
diff --git a/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDataConnectionTests.json b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDataConnectionTests.json
new file mode 100644
index 000000000000..45bd8b8e3419
--- /dev/null
+++ b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDataConnectionTests.json
@@ -0,0 +1,3524 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "010a7b6d-eaca-4e64-9d67-910af27cdb5f"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:56:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "4b0ce352-bc47-43f8-ac1c-6167c2012a7c"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b0ce352-bc47-43f8-ac1c-6167c2012a7c"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095642Z:4b0ce352-bc47-43f8-ac1c-6167c2012a7c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "3764"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdktestrg3775?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzM3NzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52386a39-4271-4fc7-9ecf-a46a98c7b628"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:56:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "3e85bdfa-97c3-4393-a9ec-7833ef039c2c"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e85bdfa-97c3-4393-a9ec-7833ef039c2c"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095644Z:3e85bdfa-97c3-4393-a9ec-7833ef039c2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "182"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775\",\r\n \"name\": \"sdktestrg3775\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTc/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "adeed89e-9533-497f-a97d-91afa3df9421"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "237"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:56:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "b89a4a08-1bb7-4dcf-80eb-adbfa65523de"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "199"
+ ],
+ "x-ms-correlation-request-id": [
+ "11838e4a-f561-4bc1-bdac-3a8889db69c1"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095648Z:11838e4a-f561-4bc1-bdac-3a8889db69c1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217\",\r\n \"name\": \"testcluster7217\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"state\": \"Creating\",\r\n \"queryUri\": null,\r\n \"uri\": null,\r\n \"dataIngestionUri\": null,\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": null,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:57:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "cbe8dd0b-e2b7-41e4-94fb-581d2c40bdc6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "6269fb04-fbe0-46e7-a71a-bbf055ce95f0"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095718Z:6269fb04-fbe0-46e7-a71a-bbf055ce95f0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:57:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "298"
+ ],
+ "x-ms-request-id": [
+ "b9d6e96d-6e24-4449-a23c-a05b55f04f63"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c8f750e-91bf-428e-a376-88e9d7ca8b64"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095748Z:3c8f750e-91bf-428e-a376-88e9d7ca8b64"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:58:18 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "297"
+ ],
+ "x-ms-request-id": [
+ "232e04de-36d4-4bc7-a042-932f182a5ad2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "990a60c5-e359-41d9-b832-2937e1467e51"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095819Z:990a60c5-e359-41d9-b832-2937e1467e51"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:58:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "296"
+ ],
+ "x-ms-request-id": [
+ "0ca585b2-fe39-45a9-9508-9d40c8cbb7c6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b297403-2f93-4a1c-8e34-1cbf9a91a071"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095849Z:5b297403-2f93-4a1c-8e34-1cbf9a91a071"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:59:19 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "295"
+ ],
+ "x-ms-request-id": [
+ "d5a435cb-659d-49d5-a19e-2d0d139f4a29"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "f289f7f2-3a9a-4311-8503-ea3335373f8d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095920Z:f289f7f2-3a9a-4311-8503-ea3335373f8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 09:59:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "294"
+ ],
+ "x-ms-request-id": [
+ "c7002e99-17eb-4e58-a7e6-6d57a3f46979"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "6bc84fce-1023-4b5a-9a1b-8d238915c43d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T095950Z:6bc84fce-1023-4b5a-9a1b-8d238915c43d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:00:20 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "293"
+ ],
+ "x-ms-request-id": [
+ "eccc7b6e-17d8-4c9d-b9c3-8c47e5f7b9df"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "24deb5e9-7add-4e6b-9a06-d3433e9c2f1f"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100021Z:24deb5e9-7add-4e6b-9a06-d3433e9c2f1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:00:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "292"
+ ],
+ "x-ms-request-id": [
+ "172ee059-d44b-4ad4-9c49-46b13f407b7b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "b384d114-1e8f-4251-93ee-976b8f7981a3"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100051Z:b384d114-1e8f-4251-93ee-976b8f7981a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:01:21 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "291"
+ ],
+ "x-ms-request-id": [
+ "a9c7bf8e-9e82-4cdb-9c90-7753e6b33d0c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "46159f68-b2a3-4411-ac6e-2b62e6065667"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100122Z:46159f68-b2a3-4411-ac6e-2b62e6065667"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:01:51 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "290"
+ ],
+ "x-ms-request-id": [
+ "eccb63ce-4dc9-4080-a9cb-a02d351bc63d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff6d1fcf-4496-4eb8-80c0-5e05c12ba11b"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100152Z:ff6d1fcf-4496-4eb8-80c0-5e05c12ba11b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:02:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "289"
+ ],
+ "x-ms-request-id": [
+ "6c455cbd-9743-4667-acca-fc9aacad62e6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "a40d011e-3e83-4bab-a26c-ebc85f930c26"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100222Z:a40d011e-3e83-4bab-a26c-ebc85f930c26"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:02:53 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "e2a08eaf-7d32-4ad9-a599-df0b6d643382"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bc486f4-6ebf-4353-a49e-c726228c6d22"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100253Z:0bc486f4-6ebf-4353-a49e-c726228c6d22"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:03:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "6bd00a6c-a95b-4dfb-af13-c4f103096dd6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a35bf7f-6563-4263-af02-e412f6aa5a60"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100323Z:0a35bf7f-6563-4263-af02-e412f6aa5a60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:03:53 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "9edf0680-967b-4efe-ab8e-90f5d5293e0d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "a68e553b-10fc-4682-a796-8dfc2c6eff76"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100353Z:a68e553b-10fc-4682-a796-8dfc2c6eff76"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:04:24 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "3882f48c-51fe-4f1c-8527-8fde43c83f60"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4b351cb-a1ce-46de-8654-6c2d1ec6f183"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100424Z:e4b351cb-a1ce-46de-8654-6c2d1ec6f183"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:04:54 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
+ ],
+ "x-ms-request-id": [
+ "f24ecd0a-6797-42fa-b7e2-1f6febaf8eb0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "2167b023-6606-4aed-83d9-65c3b720b0b9"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100455Z:2167b023-6606-4aed-83d9-65c3b720b0b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:05:24 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "289"
+ ],
+ "x-ms-request-id": [
+ "3f851dd4-40ef-496f-9420-c28c7507a199"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "19a59e7c-e2f2-4edc-8033-6be3aa03de60"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100525Z:19a59e7c-e2f2-4edc-8033-6be3aa03de60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:05:55 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "6d4e12e2-7642-4770-a5d8-7b44acfafc2b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "319d6731-6418-4ca9-a4af-f4fcc1676164"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100556Z:319d6731-6418-4ca9-a4af-f4fcc1676164"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:06:25 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "44c020d0-8a99-4d4c-8f6b-ef181e0b0dd1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "686a2c43-a379-4c5f-9a3e-b767e0a7d553"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100626Z:686a2c43-a379-4c5f-9a3e-b767e0a7d553"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:06:56 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "bf4f7b32-b5cf-49b8-88a5-5adca07a846f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "10f9952b-f7c6-43ad-a30f-17ca70373318"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100656Z:10f9952b-f7c6-43ad-a30f-17ca70373318"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/7475afdc-4bab-4872-ba3e-89c7851a152a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc0NzVhZmRjLTRiYWItNDg3Mi1iYTNlLTg5Yzc4NTFhMTUyYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:07:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "a2317076-d6e8-4426-9582-08b1ac184b30"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0aa325fe-6f92-4fb2-bf8f-40a2d69abeb2"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100727Z:0aa325fe-6f92-4fb2-bf8f-40a2d69abeb2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"name\": \"7475afdc-4bab-4872-ba3e-89c7851a152a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T09:56:47.5910879Z\",\r\n \"endTime\": \"2019-02-14T10:07:00.4156824Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"3f208cbe-359d-4825-b8f5-dcb2bda52fc3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTc/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:07:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "c13eff8f-ac63-4ede-b19f-4364311f54a2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9a49723-6bd9-449f-8558-2daf66677347"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100727Z:f9a49723-6bd9-449f-8558-2daf66677347"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217\",\r\n \"name\": \"testcluster7217\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster7217.centralus.kusto.windows.net\",\r\n \"uri\": \"https://testcluster7217.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster7217.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQ/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriod\": \"P2D\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20b77432-a61f-4e89-b212-1d2cec18acef"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "118"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:07:31 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "04c51c5f-0e3c-4c8c-b06b-8ea5df543e2f"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/4d61f867-d646-4610-96c5-a13575b8ee80?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "199"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe484c77-833a-40b6-8c0c-a5d073301ad0"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100732Z:fe484c77-833a-40b6-8c0c-a5d073301ad0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "385"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217/Databases/testdatabase6414\",\r\n \"name\": \"testcluster7217/testdatabase6414\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriod\": \"P2D\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/4d61f867-d646-4610-96c5-a13575b8ee80?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzRkNjFmODY3LWQ2NDYtNDYxMC05NmM1LWExMzU3NWI4ZWU4MD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:08:02 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
+ ],
+ "x-ms-request-id": [
+ "f3739750-f0cb-4637-b07c-7d013d41d82c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c2ef5f2-e0c6-4850-991a-e9df471f23f4"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100802Z:9c2ef5f2-e0c6-4850-991a-e9df471f23f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/4d61f867-d646-4610-96c5-a13575b8ee80\",\r\n \"name\": \"4d61f867-d646-4610-96c5-a13575b8ee80\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T10:07:31.9196404Z\",\r\n \"endTime\": \"2019-02-14T10:07:35.3102528Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseCreate\",\r\n \"RootActivityId\": \"f4f43426-1349-49ec-a75d-0614828f8882\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQ/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:08:02 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "26c73965-fbc6-486f-8528-cbfbc8f821eb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e225959-871c-454f-9566-d698c42f711c"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100803Z:0e225959-871c-454f-9566-d698c42f711c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217/Databases/testdatabase6414\",\r\n \"name\": \"testcluster7217/testdatabase6414\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 4,\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriodInDays\": 2,\r\n \"hotCachePeriod\": \"P2D\",\r\n \"statistics\": {\r\n \"size\": 0.0\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414/dataConnections/eventhubConection8862?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQvZGF0YUNvbm5lY3Rpb25zL2V2ZW50aHViQ29uZWN0aW9uODg2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"kind\": \"EventHub\",\r\n \"properties\": {\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubNamespaceForClients/eventhubs/eventhubtest\",\r\n \"consumerGroup\": \"$Default\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "719864ad-169a-4279-8b23-9c0c00ef3d68"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "315"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:08:03 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "2c59529c-70e2-471a-a06f-92e3f96c9397"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/ca027e34-35d2-45dd-96b2-3198c8f0bc62?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "199"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c926f7f-2b29-4c20-b5b7-5413fd558e1a"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100804Z:7c926f7f-2b29-4c20-b5b7-5413fd558e1a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "653"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217/Databases/testdatabase6414/DataConnections/eventhubConection8862\",\r\n \"name\": \"testcluster7217/testdatabase6414/eventhubConection8862\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/DataConnections\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"properties\": {\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubNamespaceForClients/eventhubs/eventhubtest\",\r\n \"consumerGroup\": \"$Default\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414/dataConnections/eventhubConection8862?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQvZGF0YUNvbm5lY3Rpb25zL2V2ZW50aHViQ29uZWN0aW9uODg2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"kind\": \"EventHub\",\r\n \"properties\": {\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubNamespaceForClients/eventhubs/eventhubtest\",\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"CSV\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "530bccb9-734c-4c43-8546-3bc3c07b636d"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "341"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:08:35 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "198"
+ ],
+ "x-ms-request-id": [
+ "c9eb3e0a-623f-4dd4-84fe-d586a8c78e5a"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/adb0b478-05fb-4752-ba68-842c32ed0422?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "b53834fc-f915-4d04-adaa-4b9395342fca"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100835Z:b53834fc-f915-4d04-adaa-4b9395342fca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "672"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217/Databases/testdatabase6414/DataConnections/eventhubConection8862\",\r\n \"name\": \"testcluster7217/testdatabase6414/eventhubConection8862\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/DataConnections\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"properties\": {\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubNamespaceForClients/eventhubs/eventhubtest\",\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"CSV\",\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/ca027e34-35d2-45dd-96b2-3198c8f0bc62?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2NhMDI3ZTM0LTM1ZDItNDVkZC05NmIyLTMxOThjOGYwYmM2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:08:34 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "283"
+ ],
+ "x-ms-request-id": [
+ "c169fc8c-d6ec-489c-8515-ff80f1866b15"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5457736-275d-4ca1-86f4-c7aceea8017e"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100834Z:e5457736-275d-4ca1-86f4-c7aceea8017e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "484"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/ca027e34-35d2-45dd-96b2-3198c8f0bc62\",\r\n \"name\": \"ca027e34-35d2-45dd-96b2-3198c8f0bc62\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T10:08:04.0676564Z\",\r\n \"endTime\": \"2019-02-14T10:08:28.4850633Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DmServiceEventHubObtainerAdd\",\r\n \"RootActivityId\": \"f26e95fb-f6d4-4f87-a15b-e9ea9886612e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414/dataConnections/eventhubConection8862?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQvZGF0YUNvbm5lY3Rpb25zL2V2ZW50aHViQ29uZWN0aW9uODg2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:08:34 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "b4bf5140-a467-4be8-8dd5-2c03cc6da5aa"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "73a9ff6b-28bf-48e4-95ff-a85f7aaf5ada"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100834Z:73a9ff6b-28bf-48e4-95ff-a85f7aaf5ada"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "716"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217/Databases/testdatabase6414/DataConnections/eventhubConection8862\",\r\n \"name\": \"testcluster7217/testdatabase6414/eventhubConection8862\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/DataConnections\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubNamespaceForClients/eventhubs/eventhubtest\",\r\n \"consumerGroup\": \"$Default\",\r\n \"tableName\": \"\",\r\n \"mappingRuleName\": \"\",\r\n \"dataFormat\": \"\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414/dataConnections/eventhubConection8862?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQvZGF0YUNvbm5lY3Rpb25zL2V2ZW50aHViQ29uZWN0aW9uODg2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b71a7c3c-7125-48cc-b6f8-29ec7dd318f8"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:08:35 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "298"
+ ],
+ "x-ms-request-id": [
+ "589303dd-dbe2-4dc1-98bb-83a0c644c667"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c52f08b-7788-4887-9d07-b4f504ed4081"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100835Z:4c52f08b-7788-4887-9d07-b4f504ed4081"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "716"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217/Databases/testdatabase6414/DataConnections/eventhubConection8862\",\r\n \"name\": \"testcluster7217/testdatabase6414/eventhubConection8862\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/DataConnections\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubNamespaceForClients/eventhubs/eventhubtest\",\r\n \"consumerGroup\": \"$Default\",\r\n \"tableName\": \"\",\r\n \"mappingRuleName\": \"\",\r\n \"dataFormat\": \"\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414/dataConnections/eventhubConection8862?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQvZGF0YUNvbm5lY3Rpb25zL2V2ZW50aHViQ29uZWN0aW9uODg2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:09:06 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "297"
+ ],
+ "x-ms-request-id": [
+ "87a43709-39bb-481b-bb1d-f9b683384971"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "da61b8b6-014c-46dd-b414-a7a1daa32e1e"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100907Z:da61b8b6-014c-46dd-b414-a7a1daa32e1e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "723"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217/Databases/testdatabase6414/DataConnections/eventhubConection8862\",\r\n \"name\": \"testcluster7217/testdatabase6414/eventhubConection8862\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/DataConnections\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.EventHub/namespaces/eventHubNamespaceForClients/eventhubs/eventhubtest\",\r\n \"consumerGroup\": \"$Default\",\r\n \"tableName\": null,\r\n \"mappingRuleName\": null,\r\n \"dataFormat\": \"CSV\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/adb0b478-05fb-4752-ba68-842c32ed0422?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2FkYjBiNDc4LTA1ZmItNDc1Mi1iYTY4LTg0MmMzMmVkMDQyMj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:09:05 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "282"
+ ],
+ "x-ms-request-id": [
+ "b31ffb8d-bfb8-40f8-9a75-dc228773dcc0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "57964f87-d550-472f-8786-ad3886ffae2a"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100906Z:57964f87-d550-472f-8786-ad3886ffae2a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "484"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/adb0b478-05fb-4752-ba68-842c32ed0422\",\r\n \"name\": \"adb0b478-05fb-4752-ba68-842c32ed0422\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T10:08:35.8053097Z\",\r\n \"endTime\": \"2019-02-14T10:08:37.7741244Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DmServiceEventHubObtainerAdd\",\r\n \"RootActivityId\": \"68bc93fd-d66a-45a7-9a22-945a9c775199\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414/dataConnections/eventhubConection8862?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQvZGF0YUNvbm5lY3Rpb25zL2V2ZW50aHViQ29uZWN0aW9uODg2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2736d0a6-0539-4853-af6f-0ea0bdac86c6"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:09:07 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08e0e7c1-6c62-4258-9f46-d100a22964ac?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/08e0e7c1-6c62-4258-9f46-d100a22964ac?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "58c17567-b426-4609-bd33-b56ed3bbc98d"
+ ],
+ "x-ms-correlation-request-id": [
+ "58c17567-b426-4609-bd33-b56ed3bbc98d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100907Z:58c17567-b426-4609-bd33-b56ed3bbc98d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08e0e7c1-6c62-4258-9f46-d100a22964ac?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4ZTBlN2MxLTZjNjItNDI1OC05ZjQ2LWQxMDBhMjI5NjRhYz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:09:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "281"
+ ],
+ "x-ms-request-id": [
+ "2d53cb45-185f-462f-b2e5-25e1d21fc3b4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fd9b522-d88d-45b6-a987-c91d753f50b1"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100938Z:3fd9b522-d88d-45b6-a987-c91d753f50b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/08e0e7c1-6c62-4258-9f46-d100a22964ac\",\r\n \"name\": \"08e0e7c1-6c62-4258-9f46-d100a22964ac\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T10:09:07.6492843Z\",\r\n \"endTime\": \"2019-02-14T10:09:08.1024188Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DmServiceDataObtainerDrop\",\r\n \"RootActivityId\": \"157d51de-418f-4e6f-9a03-a13345e76c45\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/08e0e7c1-6c62-4258-9f46-d100a22964ac?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzA4ZTBlN2MxLTZjNjItNDI1OC05ZjQ2LWQxMDBhMjI5NjRhYz9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:09:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "280"
+ ],
+ "x-ms-request-id": [
+ "00ea0731-91fa-4f8a-a6ef-828b1693d906"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6ecdc81-5714-4684-8bc1-ed26387e35c6"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100938Z:c6ecdc81-5714-4684-8bc1-ed26387e35c6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "11"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\"Completed\"",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testcluster7217%2Ftestdatabase6414/dataConnections/eventhubConection8862?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RjbHVzdGVyNzIxNyUyRnRlc3RkYXRhYmFzZTY0MTQvZGF0YUNvbm5lY3Rpb25zL2V2ZW50aHViQ29uZWN0aW9uODg2Mj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4218e311-dcbb-41ca-a231-73bde606270b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:09:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "1e0a47fc-c03d-400b-a5b6-d018cc5b4423"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd78d2d8-3c25-4d3e-93c5-e2f2e32df1ec"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100938Z:dd78d2d8-3c25-4d3e-93c5-e2f2e32df1ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource with identifier '/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/Clusters/testcluster7217/Databases/testcluster7217' is not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217/databases/testdatabase6414?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTcvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTY0MTQ/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "522b2900-3762-4def-8bbc-179f990d9580"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:09:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b31283bc-87d7-4e9f-8b5e-809d3b643f4c?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/b31283bc-87d7-4e9f-8b5e-809d3b643f4c?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "1540987c-ec33-44ad-97c4-d759843255ad"
+ ],
+ "x-ms-correlation-request-id": [
+ "1540987c-ec33-44ad-97c4-d759843255ad"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T100939Z:1540987c-ec33-44ad-97c4-d759843255ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b31283bc-87d7-4e9f-8b5e-809d3b643f4c?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2IzMTI4M2JjLTg3ZDctNGU5Zi04YjVlLTgwOWQzYjY0M2Y0Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:10:09 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "289"
+ ],
+ "x-ms-request-id": [
+ "8745eeed-d31d-48f3-8347-a404d6ffd675"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "abd32446-3060-459a-958d-d39ed0ee40c8"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101009Z:abd32446-3060-459a-958d-d39ed0ee40c8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b31283bc-87d7-4e9f-8b5e-809d3b643f4c\",\r\n \"name\": \"b31283bc-87d7-4e9f-8b5e-809d3b643f4c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T10:09:38.996539Z\",\r\n \"endTime\": \"2019-02-14T10:09:41.1352762Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseDelete\",\r\n \"RootActivityId\": \"809948ad-4462-4d1f-98b2-ba0b4f5d03f7\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b31283bc-87d7-4e9f-8b5e-809d3b643f4c?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2IzMTI4M2JjLTg3ZDctNGU5Zi04YjVlLTgwOWQzYjY0M2Y0Yz9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:10:09 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "630849c6-a53c-4c9d-8e8c-7877a0ab8725"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1d64766-70f9-40ac-8258-88d5ac475c66"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101010Z:e1d64766-70f9-40ac-8258-88d5ac475c66"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "11"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\"Completed\"",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3775/providers/Microsoft.Kusto/clusters/testcluster7217?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzM3NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjcyMTc/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8d053481-8d73-495b-b7a3-3824954785e4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:10:10 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "31a45ef5-8822-4df4-8852-0577505fca1d"
+ ],
+ "x-ms-correlation-request-id": [
+ "31a45ef5-8822-4df4-8852-0577505fca1d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101010Z:31a45ef5-8822-4df4-8852-0577505fca1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:10:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "eacf01a4-dab6-414b-9006-8a6cd5eca8d2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d293202-beb8-43a8-bbe0-cbc9ee9900ff"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101040Z:4d293202-beb8-43a8-bbe0-cbc9ee9900ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:11:11 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "8ad4a580-9f0b-428e-8c86-a61b918be453"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "36e580a1-0a7b-4366-a0dc-95d6eec1797e"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101111Z:36e580a1-0a7b-4366-a0dc-95d6eec1797e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:11:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "4d8f5165-f610-426b-b59b-29cc67e7a216"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "890661ef-beff-4237-a577-4cf8ef7c65a5"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101142Z:890661ef-beff-4237-a577-4cf8ef7c65a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:12:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
+ ],
+ "x-ms-request-id": [
+ "153b9828-a5f9-4641-8849-77a34a5f84f4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "98588841-738d-44c1-914e-393f8326d8bf"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101212Z:98588841-738d-44c1-914e-393f8326d8bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:12:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "283"
+ ],
+ "x-ms-request-id": [
+ "5b7fdb8b-31a3-447a-b645-d072c160d078"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0c2656b-6bbf-4d84-a60c-e41c4579a54a"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101243Z:a0c2656b-6bbf-4d84-a60c-e41c4579a54a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:13:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "282"
+ ],
+ "x-ms-request-id": [
+ "0b51e7b0-d72a-4bef-bc6c-ca682ce05a06"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d8b1d2a-0361-4c81-b06a-88b479b16698"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101314Z:9d8b1d2a-0361-4c81-b06a-88b479b16698"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:13:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "281"
+ ],
+ "x-ms-request-id": [
+ "f26aacd3-2769-457c-bed7-1614fe312558"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "eba0265d-1e3a-418d-b073-33b28b074db4"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101344Z:eba0265d-1e3a-418d-b073-33b28b074db4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:14:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "280"
+ ],
+ "x-ms-request-id": [
+ "fdf4b05e-983f-47ed-9c5e-808e08ad9a34"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "800b0787-4c1a-4e3a-9b2f-bfc05007a727"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101415Z:800b0787-4c1a-4e3a-9b2f-bfc05007a727"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:14:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "279"
+ ],
+ "x-ms-request-id": [
+ "76149aca-8e3d-4401-874f-f1df22cfff6b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "79fe8f1c-6371-48f5-87a8-cbb70190ada2"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101445Z:79fe8f1c-6371-48f5-87a8-cbb70190ada2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:15:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "c1cb92c7-e0fe-4c34-9ccb-0a1fbe1703f7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "744828b8-ca74-45ed-9ca0-4040571d973b"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101516Z:744828b8-ca74-45ed-9ca0-4040571d973b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"name\": \"b80663d5-d939-4cbc-8940-7b1185445a58\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T10:10:10.5668672Z\",\r\n \"endTime\": \"2019-02-14T10:14:57.8321371Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"de1f3172-2333-46ec-905a-b2954b113f10\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/b80663d5-d939-4cbc-8940-7b1185445a58?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2I4MDY2M2Q1LWQ5MzktNGNiYy04OTQwLTdiMTE4NTQ0NWE1OD9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 10:15:16 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "3fd9b3d5-48a7-4d6c-8d38-bc0f65cbc994"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5157d09-5699-4950-b135-0a6e38ac0699"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T101516Z:e5157d09-5699-4950-b135-0a6e38ac0699"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "11"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\"Completed\"",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Initialize": [
+ "sdktestrg3775",
+ "testcluster7217",
+ "testdatabase6414",
+ "eventhubConection8862"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "11d5f159-a21d-4a6c-8053-c3aae30057cf",
+ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
+ "SubId": "11d5f159-a21d-4a6c-8053-c3aae30057cf"
+ }
+}
\ No newline at end of file
diff --git a/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDatabasePrincipalsTests.json b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDatabasePrincipalsTests.json
new file mode 100644
index 000000000000..764b6c344b2b
--- /dev/null
+++ b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDatabasePrincipalsTests.json
@@ -0,0 +1,2426 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "14f73e5b-e87a-42e5-8af6-64bc05e36d09"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:09:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "4201d0e2-71dd-40e4-8cff-00fa6e3b6624"
+ ],
+ "x-ms-correlation-request-id": [
+ "4201d0e2-71dd-40e4-8cff-00fa6e3b6624"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T110958Z:4201d0e2-71dd-40e4-8cff-00fa6e3b6624"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "3764"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdktestrg6532?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzY1MzI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7286cb73-6d86-433c-8974-b105793c3e94"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:09:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "1801eb97-0280-456e-90e8-e1ec040e125e"
+ ],
+ "x-ms-correlation-request-id": [
+ "1801eb97-0280-456e-90e8-e1ec040e125e"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111000Z:1801eb97-0280-456e-90e8-e1ec040e125e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "182"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532\",\r\n \"name\": \"sdktestrg6532\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzY/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa93b1f9-d394-4569-a448-48b308ff636b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "237"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:10:05 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "2400a664-6c98-4dc5-a299-b048e768425c"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "199"
+ ],
+ "x-ms-correlation-request-id": [
+ "bdc3a355-b999-4dda-9e56-c8a3c9528cb4"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111005Z:bdc3a355-b999-4dda-9e56-c8a3c9528cb4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/Clusters/testcluster7976\",\r\n \"name\": \"testcluster7976\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"state\": \"Creating\",\r\n \"queryUri\": null,\r\n \"uri\": null,\r\n \"dataIngestionUri\": null,\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": null,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:10:35 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "98a9072d-b6a0-4a5a-ba06-d4e542e55b0c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0dd51138-43d9-4fcf-9cc1-20d6970f482c"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111035Z:0dd51138-43d9-4fcf-9cc1-20d6970f482c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:11:05 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "298"
+ ],
+ "x-ms-request-id": [
+ "b089b51b-f0d9-4966-942a-905361170c9f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "7647d4da-83ba-40d1-86ee-2432719f5365"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111105Z:7647d4da-83ba-40d1-86ee-2432719f5365"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:11:35 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "297"
+ ],
+ "x-ms-request-id": [
+ "2525ac1e-70be-466e-a0ba-c46fa2bcac10"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "217d9725-494d-4c57-aa82-1efbf63433e3"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111136Z:217d9725-494d-4c57-aa82-1efbf63433e3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:12:06 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "296"
+ ],
+ "x-ms-request-id": [
+ "161a76a2-89be-44f0-b0b9-5cf8a2909e92"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "7015e5e6-f349-454c-8951-756becc29347"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111206Z:7015e5e6-f349-454c-8951-756becc29347"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:12:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "295"
+ ],
+ "x-ms-request-id": [
+ "689d6dff-2aa7-4f4c-9b84-a8ed2cb3ceae"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6e99a08-8462-4629-bf5b-680038a03e65"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111237Z:c6e99a08-8462-4629-bf5b-680038a03e65"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:13:06 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "294"
+ ],
+ "x-ms-request-id": [
+ "a6365abc-158f-4c63-8c0c-7343348a6271"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bc341d8-f8b0-42ed-8365-534774577897"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111307Z:5bc341d8-f8b0-42ed-8365-534774577897"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:13:37 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "293"
+ ],
+ "x-ms-request-id": [
+ "05500d71-e964-4f18-b206-2b37a0a7c444"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "d61ca7dc-9b42-43d2-9aae-b6c576f6bd5a"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111337Z:d61ca7dc-9b42-43d2-9aae-b6c576f6bd5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:14:07 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "292"
+ ],
+ "x-ms-request-id": [
+ "c73c3bb2-3e19-47b2-b8f1-144ce2916b2a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "25db7952-d4c0-4517-903a-7041ce122d5f"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111408Z:25db7952-d4c0-4517-903a-7041ce122d5f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:14:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "291"
+ ],
+ "x-ms-request-id": [
+ "df2c6b4e-605a-4987-8e88-d1de9bfa3416"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a9f70c3-5651-40b0-a02d-9bc6f109b65d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111438Z:7a9f70c3-5651-40b0-a02d-9bc6f109b65d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:15:08 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "290"
+ ],
+ "x-ms-request-id": [
+ "2560d6fd-d9d3-4a79-980d-de0b405aa2ba"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2b1939e-58a3-4515-a549-f88791066f78"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111508Z:f2b1939e-58a3-4515-a549-f88791066f78"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:15:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "289"
+ ],
+ "x-ms-request-id": [
+ "2de836dc-470e-4dd8-9f74-a7ee4928eb14"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "4809821c-35aa-428d-abae-0cc83d605e12"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111539Z:4809821c-35aa-428d-abae-0cc83d605e12"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:16:09 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "7eca3eb6-320d-4c0d-9c90-b684694e1cbb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "7decaf79-3693-41bc-ba1a-397c2783a921"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111610Z:7decaf79-3693-41bc-ba1a-397c2783a921"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:16:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "c8319566-4a80-488b-a5df-af3c6afcc4a5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1699b17-f100-4ce6-bd80-74fbc18253eb"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111640Z:c1699b17-f100-4ce6-bd80-74fbc18253eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:17:09 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "adfac1d8-167c-4eca-ad81-4d86fdcae19e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b9f1e3f-6881-4576-9bfa-07db256d0b4b"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111710Z:7b9f1e3f-6881-4576-9bfa-07db256d0b4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "463"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/83e43055-8c11-431d-997a-2903844fad3b?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzgzZTQzMDU1LThjMTEtNDMxZC05OTdhLTI5MDM4NDRmYWQzYj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:17:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "e1521fab-68d8-4765-985a-9c382a3903b9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "f17939d3-5b52-487d-ab53-7506691d1449"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111740Z:f17939d3-5b52-487d-ab53-7506691d1449"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "468"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"name\": \"83e43055-8c11-431d-997a-2903844fad3b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T11:10:04.546496Z\",\r\n \"endTime\": \"2019-02-14T11:17:34.8163185Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"2dc8ed39-02a7-4518-b8c4-21fbdba7a543\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzY/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:17:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "9918d7e5-9541-4854-9d2b-55375b6d21d4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc36bd69-510a-4daa-a2fa-bb86cadf09ee"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111741Z:bc36bd69-510a-4daa-a2fa-bb86cadf09ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/Clusters/testcluster7976\",\r\n \"name\": \"testcluster7976\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster7976.centralus.kusto.windows.net\",\r\n \"uri\": \"https://testcluster7976.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster7976.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976/databases/testdatabase7011?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzYvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTcwMTE/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriod\": \"P2D\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "93d8be43-1a4b-424b-baed-92021c773099"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "118"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:17:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "0f0bc2f1-2f1f-4829-8e3a-8021df66ded6"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/97e35172-a93b-46b7-a0e8-b8685a7f401a?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "199"
+ ],
+ "x-ms-correlation-request-id": [
+ "79383ab0-5d5b-4067-9415-e2dbca3e6ab6"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111742Z:79383ab0-5d5b-4067-9415-e2dbca3e6ab6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "385"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/Clusters/testcluster7976/Databases/testdatabase7011\",\r\n \"name\": \"testcluster7976/testdatabase7011\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriod\": \"P2D\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/97e35172-a93b-46b7-a0e8-b8685a7f401a?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzk3ZTM1MTcyLWE5M2ItNDZiNy1hMGU4LWI4Njg1YTdmNDAxYT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
+ ],
+ "x-ms-request-id": [
+ "2a3348a7-c181-46ed-a53b-801b2f47ae47"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "79c7daa2-0567-4e8f-91ad-46dd471ebb4b"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111812Z:79c7daa2-0567-4e8f-91ad-46dd471ebb4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/97e35172-a93b-46b7-a0e8-b8685a7f401a\",\r\n \"name\": \"97e35172-a93b-46b7-a0e8-b8685a7f401a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T11:17:42.3655053Z\",\r\n \"endTime\": \"2019-02-14T11:17:45.0541392Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseCreate\",\r\n \"RootActivityId\": \"cf1ccff0-207e-4ff6-be35-66cb64bbffcd\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976/databases/testdatabase7011?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzYvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTcwMTE/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "bc627df9-8f7a-41c5-9343-85fea00aac62"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "69fb8168-4c97-4230-b880-064221bcb10a"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111813Z:69fb8168-4c97-4230-b880-064221bcb10a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/Clusters/testcluster7976/Databases/testdatabase7011\",\r\n \"name\": \"testcluster7976/testdatabase7011\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 4,\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriodInDays\": 2,\r\n \"hotCachePeriod\": \"P2D\",\r\n \"statistics\": {\r\n \"size\": 0.0\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976/databases/testdatabase7011/addPrincipals?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzYvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTcwMTEvYWRkUHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"value\": [\r\n {\r\n \"role\": \"Admin\",\r\n \"name\": \"User1\",\r\n \"type\": \"User\",\r\n \"fqn\": \"aaduser=oflipman@microsoft.com\",\r\n \"email\": \"oflipman@microsoft.com\",\r\n \"appId\": \"\"\r\n }\r\n ]\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f2e389e3-7cf2-4a91-8967-470f8d3b9e78"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "217"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "d9e0ce95-7aaf-48b3-955d-f1be89d0e342"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f691bc8-5ed7-46bc-a58a-41521597f3e1"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111813Z:0f691bc8-5ed7-46bc-a58a-41521597f3e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "408"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"KustoScenarioTestPSDName\",\r\n \"role\": \"Admin\",\r\n \"type\": \"App\",\r\n \"fqn\": \"aadapp=a4e6e1b3-9c24-4287-94e1-e9ea28395164;72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"email\": \"\",\r\n \"appId\": \"a4e6e1b3-9c24-4287-94e1-e9ea28395164\"\r\n },\r\n {\r\n \"name\": \"Ofer Lipman\",\r\n \"role\": \"Admin\",\r\n \"type\": \"User\",\r\n \"fqn\": \"aaduser=d33e1651-661e-4af4-8018-cfd291c56adf;72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"email\": \"oflipman@microsoft.com\",\r\n \"appId\": \"\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976/databases/testdatabase7011/listPrincipals?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzYvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTcwMTEvbGlzdFByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "331c52dd-ba2b-45a4-8de8-3ebe90fb7ea4"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "9ea6ef92-0010-4c22-bbd8-443d3ffe285c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a1dcdda-a4ca-4e67-83d2-940e6a915163"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111814Z:9a1dcdda-a4ca-4e67-83d2-940e6a915163"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "408"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"KustoScenarioTestPSDName\",\r\n \"role\": \"Admin\",\r\n \"type\": \"App\",\r\n \"fqn\": \"aadapp=a4e6e1b3-9c24-4287-94e1-e9ea28395164;72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"email\": \"\",\r\n \"appId\": \"a4e6e1b3-9c24-4287-94e1-e9ea28395164\"\r\n },\r\n {\r\n \"name\": \"Ofer Lipman\",\r\n \"role\": \"Admin\",\r\n \"type\": \"User\",\r\n \"fqn\": \"aaduser=d33e1651-661e-4af4-8018-cfd291c56adf;72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"email\": \"oflipman@microsoft.com\",\r\n \"appId\": \"\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976/databases/testdatabase7011/removePrincipals?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzYvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTcwMTEvcmVtb3ZlUHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"value\": [\r\n {\r\n \"role\": \"Admin\",\r\n \"name\": \"User1\",\r\n \"type\": \"User\",\r\n \"fqn\": \"aaduser=oflipman@microsoft.com\",\r\n \"email\": \"oflipman@microsoft.com\",\r\n \"appId\": \"\"\r\n }\r\n ]\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "95222b79-97bc-4e72-8b19-07235be78c58"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "217"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "dd412ab2-075c-4e07-acd5-f29631d5dd81"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "cbe66005-0928-4d4e-80e9-7c7cfeab1f39"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111815Z:cbe66005-0928-4d4e-80e9-7c7cfeab1f39"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "222"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"KustoScenarioTestPSDName\",\r\n \"role\": \"Admin\",\r\n \"type\": \"App\",\r\n \"fqn\": \"aadapp=a4e6e1b3-9c24-4287-94e1-e9ea28395164;72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"email\": \"\",\r\n \"appId\": \"a4e6e1b3-9c24-4287-94e1-e9ea28395164\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976/databases/testdatabase7011?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzYvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTcwMTE/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c948f7f9-d595-4e33-910d-a8bc738ec479"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/feb155fa-6234-4b9e-952b-85d6ef8b56bd?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/feb155fa-6234-4b9e-952b-85d6ef8b56bd?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "9c786112-6e5b-4730-b3a4-9de17eaf80a0"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c786112-6e5b-4730-b3a4-9de17eaf80a0"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111815Z:9c786112-6e5b-4730-b3a4-9de17eaf80a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/feb155fa-6234-4b9e-952b-85d6ef8b56bd?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZlYjE1NWZhLTYyMzQtNGI5ZS05NTJiLTg1ZDZlZjhiNTZiZD9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "283"
+ ],
+ "x-ms-request-id": [
+ "8b9d40e3-ac74-4f09-86ad-702a33c2f8ae"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c14b8f7-c629-4ec2-a209-78c33f36b3f7"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111845Z:0c14b8f7-c629-4ec2-a209-78c33f36b3f7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/feb155fa-6234-4b9e-952b-85d6ef8b56bd\",\r\n \"name\": \"feb155fa-6234-4b9e-952b-85d6ef8b56bd\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T11:18:15.3913409Z\",\r\n \"endTime\": \"2019-02-14T11:18:16.5094386Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseDelete\",\r\n \"RootActivityId\": \"a427c8a6-dc07-4f53-b799-9ad623107a8b\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/feb155fa-6234-4b9e-952b-85d6ef8b56bd?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZlYjE1NWZhLTYyMzQtNGI5ZS05NTJiLTg1ZDZlZjhiNTZiZD9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "282"
+ ],
+ "x-ms-request-id": [
+ "c6a20156-0096-4684-96d5-0cce034f0318"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "4fd5fb74-4033-4462-878a-5986a0d53620"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111845Z:4fd5fb74-4033-4462-878a-5986a0d53620"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "11"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\"Completed\"",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg6532/providers/Microsoft.Kusto/clusters/testcluster7976?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY1MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3Rlcjc5NzY/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "910db9e8-15c4-474d-88b6-fb996f1817ba"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:18:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "7e5f774d-4a1d-49aa-856e-9117ec5193d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e5f774d-4a1d-49aa-856e-9117ec5193d6"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111846Z:7e5f774d-4a1d-49aa-856e-9117ec5193d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNkMTRlOWEzLWQ0ZTgtNDllNS04NDViLThlNzVhYTY0NzM5ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:19:16 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "281"
+ ],
+ "x-ms-request-id": [
+ "247ab29b-ee99-45d8-82b8-31ce6576497b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "c19573f9-222f-4cd5-babb-b037187cc54c"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111916Z:c19573f9-222f-4cd5-babb-b037187cc54c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"name\": \"3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"endTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"936466a8-2b05-494d-af53-68767ff45aa3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNkMTRlOWEzLWQ0ZTgtNDllNS04NDViLThlNzVhYTY0NzM5ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:19:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "280"
+ ],
+ "x-ms-request-id": [
+ "fdf499e8-c271-4110-bf11-1edf22c6f0f4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "643a23f1-1c9c-478f-bcf4-b8431962bebe"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T111947Z:643a23f1-1c9c-478f-bcf4-b8431962bebe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"name\": \"3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"endTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"936466a8-2b05-494d-af53-68767ff45aa3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNkMTRlOWEzLWQ0ZTgtNDllNS04NDViLThlNzVhYTY0NzM5ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:20:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "3e07927f-38dd-4b6d-8224-03a1b69de37c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f6ed825-7e53-49d4-a39f-0f2682118998"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T112017Z:7f6ed825-7e53-49d4-a39f-0f2682118998"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"name\": \"3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"endTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"936466a8-2b05-494d-af53-68767ff45aa3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNkMTRlOWEzLWQ0ZTgtNDllNS04NDViLThlNzVhYTY0NzM5ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:20:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "a7e1245f-8f6d-4278-bd5f-0d99a4d438bb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "15333636-c6e5-4efd-9319-66645e313525"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T112048Z:15333636-c6e5-4efd-9319-66645e313525"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"name\": \"3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"endTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"936466a8-2b05-494d-af53-68767ff45aa3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNkMTRlOWEzLWQ0ZTgtNDllNS04NDViLThlNzVhYTY0NzM5ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:21:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "09bdc60f-c988-4e15-b624-832e88e665f5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "30dfd5e0-cf0f-45e8-8092-cd058f3b7f15"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T112118Z:30dfd5e0-cf0f-45e8-8092-cd058f3b7f15"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"name\": \"3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"endTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"936466a8-2b05-494d-af53-68767ff45aa3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNkMTRlOWEzLWQ0ZTgtNDllNS04NDViLThlNzVhYTY0NzM5ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:21:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "e6eb80a3-b238-4fa5-9292-9fde6bec938e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "552e0009-03d1-43a8-8db4-180845fa7338"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190214T112149Z:552e0009-03d1-43a8-8db4-180845fa7338"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"name\": \"3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"endTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"936466a8-2b05-494d-af53-68767ff45aa3\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNkMTRlOWEzLWQ0ZTgtNDllNS04NDViLThlNzVhYTY0NzM5ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:35:56 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "bd528f0a-a013-4d96-ae10-356c442147ee"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "e09af755-1c6d-4043-8f58-1f6410db56e2"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190214T113557Z:e09af755-1c6d-4043-8f58-1f6410db56e2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"name\": \"3d14e9a3-d4e8-49e5-845b-8e75aa64739e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-14T11:18:46.4159501Z\",\r\n \"endTime\": \"2019-02-14T11:23:33.0083996Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"936466a8-2b05-494d-af53-68767ff45aa3\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3d14e9a3-d4e8-49e5-845b-8e75aa64739e?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNkMTRlOWEzLWQ0ZTgtNDllNS04NDViLThlNzVhYTY0NzM5ZT9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 14 Feb 2019 11:35:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=627903dc95454152477a6ed3f9a1fb1eb8353b838642201168fd419c4e1f409d;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "1a12d572-16a5-4a74-a576-c1a137b95b8f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7fa88c3-bef6-481a-8289-a0385f0ea6cb"
+ ],
+ "x-ms-routing-request-id": [
+ "UKSOUTH2:20190214T113558Z:e7fa88c3-bef6-481a-8289-a0385f0ea6cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "11"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\"Completed\"",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Initialize": [
+ "sdktestrg6532",
+ "testcluster7976",
+ "testdatabase7011",
+ "eventhubConection7956"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "11d5f159-a21d-4a6c-8053-c3aae30057cf",
+ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
+ "SubId": "11d5f159-a21d-4a6c-8053-c3aae30057cf"
+ }
+}
\ No newline at end of file
diff --git a/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDatabaseTests.json b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDatabaseTests.json
index dec041201f53..670bb5fddb9d 100644
--- a/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDatabaseTests.json
+++ b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/KustoDatabaseTests.json
@@ -7,13 +7,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c3f327f-8c43-4c1b-ad7f-4c5452de70d8"
+ "bfe075ef-80bd-4604-9507-168c3efea26c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -24,22 +24,22 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:32:01 GMT"
+ "Sun, 10 Feb 2019 09:27:25 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-request-id": [
- "f8592ab3-ed0a-4717-9732-89c80204d3f9"
+ "5bc703de-6ac7-4746-a6e7-4bd5b3ee772b"
],
"x-ms-correlation-request-id": [
- "f8592ab3-ed0a-4717-9732-89c80204d3f9"
+ "5bc703de-6ac7-4746-a6e7-4bd5b3ee772b"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113201Z:f8592ab3-ed0a-4717-9732-89c80204d3f9"
+ "UKSOUTH2:20190210T092726Z:5bc703de-6ac7-4746-a6e7-4bd5b3ee772b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,7 +48,7 @@
"nosniff"
],
"Content-Length": [
- "3160"
+ "3764"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -57,23 +57,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdktestrg7133?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzcxMzM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdktestrg2482?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzI0ODI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b95f7760-cbbb-4675-a22b-b35f73b2a3a2"
+ "c9db78e5-0edc-4b7c-875e-93756b23c769"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -90,22 +90,22 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:32:03 GMT"
+ "Sun, 10 Feb 2019 09:27:32 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "0d1979d5-5a0b-4862-9337-530a96f300a8"
+ "5866bc5a-ebf5-4f17-976a-1829a4bf1097"
],
"x-ms-correlation-request-id": [
- "0d1979d5-5a0b-4862-9337-530a96f300a8"
+ "5866bc5a-ebf5-4f17-976a-1829a4bf1097"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113204Z:0d1979d5-5a0b-4862-9337-530a96f300a8"
+ "UKSOUTH2:20190210T092733Z:5866bc5a-ebf5-4f17-976a-1829a4bf1097"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -123,32 +123,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg7133\",\r\n \"name\": \"sdktestrg7133\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482\",\r\n \"name\": \"sdktestrg2482\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/clusters/kustoclusterforclients/databases/testdatabase2955?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL29mZXJ0ZXN0Z3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy9rdXN0b2NsdXN0ZXJmb3JjbGllbnRzL2RhdGFiYXNlcy90ZXN0ZGF0YWJhc2UyOTU1P2FwaS12ZXJzaW9uPTIwMTgtMDktMDctcHJldmlldw==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 4,\r\n \"hotCachePeriodInDays\": 2\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4a557ae-db77-41a1-9cc4-54913c38d896"
+ "c086a527-fcff-49d1-b06f-ad5c2e717de9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "122"
+ "237"
]
},
"ResponseHeaders": {
@@ -156,7 +156,7 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:32:08 GMT"
+ "Sun, 10 Feb 2019 09:28:20 GMT"
],
"Pragma": [
"no-cache"
@@ -165,13 +165,13 @@
"\"\""
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"x-ms-request-id": [
- "06c9f0c3-0979-4b32-a38e-2e3e6d2c863a"
+ "8c0524f8-9b1b-498e-aa57-b325e4b009d2"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/a0fedd72-1bfd-49e1-b424-b3f9586729c2?api-version=2018-09-07-preview"
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21"
],
"X-Powered-By": [
"ASP.NET"
@@ -180,10 +180,10 @@
"199"
],
"x-ms-correlation-request-id": [
- "96578c48-e34f-4ba9-bedf-11d615f8435e"
+ "b5911a23-2e82-478c-806a-5f1b19ed649c"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113208Z:96578c48-e34f-4ba9-bedf-11d615f8435e"
+ "UKWEST:20190210T092821Z:b5911a23-2e82-478c-806a-5f1b19ed649c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -192,7 +192,7 @@
"nosniff"
],
"Content-Length": [
- "403"
+ "531"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -201,32 +201,2102 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/Clusters/kustoclusterforclients/Databases/testdatabase2955\",\r\n \"name\": \"kustoclusterforclients/testdatabase2955\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 4,\r\n \"hotCachePeriodInDays\": 2,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/Clusters/testcluster2964\",\r\n \"name\": \"testcluster2964\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"state\": \"Creating\",\r\n \"queryUri\": null,\r\n \"uri\": null,\r\n \"dataIngestionUri\": null,\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": null,\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/clusters/kustoclusterforclients/databases/testdatabase2955?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL29mZXJ0ZXN0Z3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy9rdXN0b2NsdXN0ZXJmb3JjbGllbnRzL2RhdGFiYXNlcy90ZXN0ZGF0YWJhc2UyOTU1P2FwaS12ZXJzaW9uPTIwMTgtMDktMDctcHJldmlldw==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:28:51 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "c256693a-e139-4dae-bf5e-67ff540d6e61"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1b66d1b-54e9-4b33-b76e-63b0d472fc70"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T092851Z:d1b66d1b-54e9-4b33-b76e-63b0d472fc70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:29:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "298"
+ ],
+ "x-ms-request-id": [
+ "38bcf589-0605-48d5-aa41-a30876e6b5d3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b073619-9b16-4b6b-b8fb-5a114e318ddd"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T092922Z:4b073619-9b16-4b6b-b8fb-5a114e318ddd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:29:52 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "297"
+ ],
+ "x-ms-request-id": [
+ "31be98e1-d081-4aeb-a713-c81a9bf294fe"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "dce47cc7-0936-4fdc-9759-06dcb6b26a53"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T092953Z:dce47cc7-0936-4fdc-9759-06dcb6b26a53"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:30:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "296"
+ ],
+ "x-ms-request-id": [
+ "87d084d5-eb16-41c8-82d4-865d76992ac2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cccf665-3949-47cd-8a3e-373060d212f6"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093023Z:6cccf665-3949-47cd-8a3e-373060d212f6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:30:53 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "295"
+ ],
+ "x-ms-request-id": [
+ "ec77b432-9abd-4767-9f76-900fc10896a9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "45d74eef-cccc-4095-a438-1094c55dcef2"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093053Z:45d74eef-cccc-4095-a438-1094c55dcef2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:31:23 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "294"
+ ],
+ "x-ms-request-id": [
+ "c3946b93-44bc-4361-a43b-5b6044a44a5f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "839c32f3-f941-483c-9345-5cb5113ab320"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093124Z:839c32f3-f941-483c-9345-5cb5113ab320"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:31:54 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "293"
+ ],
+ "x-ms-request-id": [
+ "047b470e-2a82-4f1c-a876-7f9ced21c4e6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "da3311b1-214e-4db1-aa60-4ed58b970544"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093155Z:da3311b1-214e-4db1-aa60-4ed58b970544"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:32:24 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "292"
+ ],
+ "x-ms-request-id": [
+ "b71f2483-d0f9-4a62-8237-702f5f921972"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "db1898da-463d-47c9-af4b-aa0233fd9103"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093225Z:db1898da-463d-47c9-af4b-aa0233fd9103"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:32:55 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "291"
+ ],
+ "x-ms-request-id": [
+ "eafce7e5-484a-4c65-a695-73069b1c5044"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7b23646-2240-498f-951e-4ed5323bc749"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093256Z:f7b23646-2240-498f-951e-4ed5323bc749"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:33:25 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "290"
+ ],
+ "x-ms-request-id": [
+ "47057f03-d028-47a4-b4a7-a83c876a1308"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "a13c6308-cc50-4179-a08c-652350a22f3c"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093326Z:a13c6308-cc50-4179-a08c-652350a22f3c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:33:56 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "289"
+ ],
+ "x-ms-request-id": [
+ "e6a349ff-f50f-440d-9db0-2677f2725fd2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "38c26a2f-aa97-48f4-a1e0-5fa5772777bb"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093356Z:38c26a2f-aa97-48f4-a1e0-5fa5772777bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:34:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "b3db01f1-f44c-444b-b9fe-1c8b0091c96e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c8be7b8-e618-4d09-8657-21e16099778b"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093427Z:7c8be7b8-e618-4d09-8657-21e16099778b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:34:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "2cb517e7-dc7f-408d-bef8-921ff3a519d5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2368c7a-bb10-4264-b440-516e415d7711"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093458Z:b2368c7a-bb10-4264-b440-516e415d7711"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:35:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "289"
+ ],
+ "x-ms-request-id": [
+ "c53eca4f-4f8c-4348-8e5f-718199f9eee5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "96c4d0f8-af0a-44f3-b110-a475af2e14c8"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093528Z:96c4d0f8-af0a-44f3-b110-a475af2e14c8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:35:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
+ ],
+ "x-ms-request-id": [
+ "2123fb0e-107e-49de-a041-249edfbacb77"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a155406-8a01-493a-897a-243bd47a656f"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093559Z:2a155406-8a01-493a-897a-243bd47a656f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:36:29 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "287"
+ ],
+ "x-ms-request-id": [
+ "e5ed475b-b877-455d-bea0-5b8ee90447a6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7281b74-690a-4a6b-bc1c-d2c7a2df51b4"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093629Z:b7281b74-690a-4a6b-bc1c-d2c7a2df51b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:36:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "286"
+ ],
+ "x-ms-request-id": [
+ "e282fee3-c5cf-41fa-9f5c-10274aa5f25c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd70413e-1e94-4c60-b07b-5d0a65f19d37"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093659Z:bd70413e-1e94-4c60-b07b-5d0a65f19d37"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:37:29 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "285"
+ ],
+ "x-ms-request-id": [
+ "0063fb26-b365-4454-9d96-8e2f06c3942a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "748a7dbe-4349-42ee-8b3a-0261775ec2ae"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093730Z:748a7dbe-4349-42ee-8b3a-0261775ec2ae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/fb1a7761-c99f-4390-a452-2d767991e881?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2ZiMWE3NzYxLWM5OWYtNDM5MC1hNDUyLTJkNzY3OTkxZTg4MT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:38:00 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
+ ],
+ "x-ms-request-id": [
+ "b0e59cab-f04a-450d-b11c-58b3825b0966"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "42c109b6-2bf9-4a9f-b986-6dc27c6472c7"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093801Z:42c109b6-2bf9-4a9f-b986-6dc27c6472c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"name\": \"fb1a7761-c99f-4390-a452-2d767991e881\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T09:28:20.5179409Z\",\r\n \"endTime\": \"2019-02-10T09:37:39.2433859Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterCreate\",\r\n \"RootActivityId\": \"0e02368f-0025-4db0-b6ad-9c2226e3d9c1\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:38:01 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "6577e759-8db4-44ed-8ba4-8a606f4fe0c3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6ab4891-d2ee-413e-ae4f-5ef6c6f8be8b"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093801Z:e6ab4891-d2ee-413e-ae4f-5ef6c6f8be8b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "706"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/Clusters/testcluster2964\",\r\n \"name\": \"testcluster2964\",\r\n \"type\": \"Microsoft.Kusto/Clusters\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"sku\": {\r\n \"name\": \"D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"state\": \"Running\",\r\n \"queryUri\": \"https://testcluster2964.centralus.kusto.windows.net\",\r\n \"uri\": \"https://testcluster2964.centralus.kusto.windows.net\",\r\n \"dataIngestionUri\": \"https://ingest-testcluster2964.centralus.kusto.windows.net\",\r\n \"trustedExternalTenants\": [\r\n {\r\n \"value\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n ],\r\n \"virtualNetworkConfiguration\": null,\r\n \"availabilityZones\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964/databases/testdatabase7498?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTc0OTg/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriod\": \"P2D\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6e74cb9f-493f-4b79-9631-43708f2119fe"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "118"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:38:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "fcb01497-1fe1-4c20-a423-3c2a8901a1c3"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/0cfa34e4-30d9-4c49-8598-e4d0a7ca113f?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "199"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e9cdd06-70bd-4feb-8125-ef12a3eef200"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093847Z:4e9cdd06-70bd-4feb-8125-ef12a3eef200"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "385"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/Clusters/testcluster2964/Databases/testdatabase7498\",\r\n \"name\": \"testcluster2964/testdatabase7498\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriod\": \"P2D\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964/databases/testdatabase7498?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTc0OTg/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 6,\r\n \"hotCachePeriodInDays\": 3\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriod\": \"P6D\",\r\n \"hotCachePeriod\": \"P3D\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9bca145-dbe6-4b0a-b1f2-f1ff62004476"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "118"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:39:51 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "198"
+ ],
+ "x-ms-request-id": [
+ "71835a0f-0e45-4239-ac33-12144c327509"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/78ee973e-ba81-4164-8bac-cd7c016895ac?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc192bad-aac6-4a80-98ed-e38f1d5c2183"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093951Z:fc192bad-aac6-4a80-98ed-e38f1d5c2183"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "385"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/Clusters/testcluster2964/Databases/testdatabase7498\",\r\n \"name\": \"testcluster2964/testdatabase7498\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriod\": \"P6D\",\r\n \"hotCachePeriod\": \"P3D\",\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/0cfa34e4-30d9-4c49-8598-e4d0a7ca113f?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzBjZmEzNGU0LTMwZDktNGM0OS04NTk4LWU0ZDBhN2NhMTEzZj9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:39:18 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "283"
+ ],
+ "x-ms-request-id": [
+ "450bdef0-9761-4f96-a890-082d58aba448"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee036f92-0c13-47ca-96d8-1c47e135002d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093918Z:ee036f92-0c13-47ca-96d8-1c47e135002d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/0cfa34e4-30d9-4c49-8598-e4d0a7ca113f\",\r\n \"name\": \"0cfa34e4-30d9-4c49-8598-e4d0a7ca113f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T09:38:47.5259094Z\",\r\n \"endTime\": \"2019-02-10T09:38:50.9751171Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseCreate\",\r\n \"RootActivityId\": \"1cd79884-86be-48d4-b259-dfcaf215fe69\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964/databases/testdatabase7498?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTc0OTg/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:39:18 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "299"
+ ],
+ "x-ms-request-id": [
+ "e05f78ff-de69-413b-890b-0b0badd30a73"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "feddc40f-8dbd-4050-bcf3-804aeab1421d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093919Z:feddc40f-8dbd-4050-bcf3-804aeab1421d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/Clusters/testcluster2964/Databases/testdatabase7498\",\r\n \"name\": \"testcluster2964/testdatabase7498\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 4,\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriodInDays\": 2,\r\n \"hotCachePeriod\": \"P2D\",\r\n \"statistics\": {\r\n \"size\": 0.0\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964/databases/testdatabase7498?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTc0OTg/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c4d1db2a-e926-4fe2-b965-1971c11091f0"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:39:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "298"
+ ],
+ "x-ms-request-id": [
+ "ef147bdd-1ed9-48eb-8c78-650020481b35"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f5022c7-34ec-48d7-aa82-c009ca2abb2e"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T093945Z:0f5022c7-34ec-48d7-aa82-c009ca2abb2e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/Clusters/testcluster2964/Databases/testdatabase7498\",\r\n \"name\": \"testcluster2964/testdatabase7498\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 4,\r\n \"softDeletePeriod\": \"P4D\",\r\n \"hotCachePeriodInDays\": 2,\r\n \"hotCachePeriod\": \"P2D\",\r\n \"statistics\": {\r\n \"size\": 0.0\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964/databases/testdatabase7498?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTc0OTg/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:40:23 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"\""
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "297"
+ ],
+ "x-ms-request-id": [
+ "fc0cb6ed-ac04-4f59-8407-0a7dd9189fa2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "d76159bd-3b32-4afc-baec-2965488ff7c8"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T094023Z:d76159bd-3b32-4afc-baec-2965488ff7c8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/Clusters/testcluster2964/Databases/testdatabase7498\",\r\n \"name\": \"testcluster2964/testdatabase7498\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"\\\"\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 6,\r\n \"softDeletePeriod\": \"P6D\",\r\n \"hotCachePeriodInDays\": 3,\r\n \"hotCachePeriod\": \"P3D\",\r\n \"statistics\": {\r\n \"size\": 0.0\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964/databases/testdatabase7498?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTc0OTg/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8f52c2a-5a30-4a72-a82d-4f17dfa7eba1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:41:01 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "x-ms-request-id": [
+ "86b9f71b-2345-45b6-8d4a-cdf055349273"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "296"
+ ],
+ "x-ms-correlation-request-id": [
+ "085e5f2a-452c-4d74-bec0-3bbdc5eac85a"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T094101Z:085e5f2a-452c-4d74-bec0-3bbdc5eac85a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource with identifier '/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/Clusters/testcluster2964/Databases/testdatabase7498' is not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/78ee973e-ba81-4164-8bac-cd7c016895ac?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzc4ZWU5NzNlLWJhODEtNDE2NC04YmFjLWNkN2MwMTY4OTVhYz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:40:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "292"
+ ],
+ "x-ms-request-id": [
+ "173a1064-7c3d-46c2-b074-5fa1e1d4d4f3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "25e5eb5c-8d00-4583-8f23-b154fb99c2cf"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T094022Z:25e5eb5c-8d00-4583-8f23-b154fb99c2cf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/78ee973e-ba81-4164-8bac-cd7c016895ac\",\r\n \"name\": \"78ee973e-ba81-4164-8bac-cd7c016895ac\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T09:39:51.5998793Z\",\r\n \"endTime\": \"2019-02-10T09:39:53.9947248Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseCreate\",\r\n \"RootActivityId\": \"7de542b3-f6b8-48e9-9566-79af791343ba\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964/databases/testdatabase7498?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQvZGF0YWJhc2VzL3Rlc3RkYXRhYmFzZTc0OTg/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d844d2f-2424-4b2f-b922-44153deb4602"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:40:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3fae94ef-3a8d-4269-b44d-b6b3274c2365?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/3fae94ef-3a8d-4269-b44d-b6b3274c2365?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "fcbfbfe4-2e4c-4bac-86cc-0d000a8de434"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcbfbfe4-2e4c-4bac-86cc-0d000a8de434"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T094027Z:fcbfbfe4-2e4c-4bac-86cc-0d000a8de434"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3fae94ef-3a8d-4269-b44d-b6b3274c2365?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNmYWU5NGVmLTNhOGQtNDI2OS1iNDRkLWI2YjMyNzRjMjM2NT9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:40:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "291"
+ ],
+ "x-ms-request-id": [
+ "17709d45-8a94-4c91-b6c2-fed950d69358"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a775ec5-f10b-4a1b-be70-9e243b8df065"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T094057Z:8a775ec5-f10b-4a1b-be70-9e243b8df065"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/3fae94ef-3a8d-4269-b44d-b6b3274c2365\",\r\n \"name\": \"3fae94ef-3a8d-4269-b44d-b6b3274c2365\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T09:40:27.3362694Z\",\r\n \"endTime\": \"2019-02-10T09:40:29.5081748Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseDelete\",\r\n \"RootActivityId\": \"e64e56c8-5f06-462a-b62b-8a3720a17797\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/3fae94ef-3a8d-4269-b44d-b6b3274c2365?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzNmYWU5NGVmLTNhOGQtNDI2OS1iNDRkLWI2YjMyNzRjMjM2NT9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:40:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "290"
+ ],
+ "x-ms-request-id": [
+ "9027e829-1ebf-4555-b738-ae059dce68dd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b21fe7c-bdcd-4852-b093-12d253f87afa"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T094058Z:6b21fe7c-bdcd-4852-b093-12d253f87afa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "11"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\"Completed\"",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg2482/providers/Microsoft.Kusto/clusters/testcluster2964?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzI0ODIvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy90ZXN0Y2x1c3RlcjI5NjQ/YXBpLXZlcnNpb249MjAxOS0wMS0yMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca749e08-b976-46cf-8949-3847cb917957"
+ "dfb351f1-8b90-4692-8e05-87319bedd5e5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Date": [
+ "Sun, 10 Feb 2019 09:41:19 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21&operationResultResponseType=Location"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "8951dd24-9498-4c12-8ff6-6849120ae78d"
+ ],
+ "x-ms-correlation-request-id": [
+ "8951dd24-9498-4c12-8ff6-6849120ae78d"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T094119Z:8951dd24-9498-4c12-8ff6-6849120ae78d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Content-Length": [
- "122"
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -234,37 +2304,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:32:39 GMT"
+ "Sun, 10 Feb 2019 09:41:50 GMT"
],
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"v4.0\""
- ],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "198"
+ "289"
],
"x-ms-request-id": [
- "713901e5-5df8-4249-9489-e5111384acb7"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/abddac3f-2a16-4d76-a762-41d42ef03951?api-version=2018-09-07-preview"
+ "b54273a5-e280-48ac-96e2-bb8120042116"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "82e3df6b-eca0-4be2-908a-ccfb23152747"
+ "a377c5c9-b1ca-4b79-948d-7f1985cb7c0e"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113240Z:82e3df6b-eca0-4be2-908a-ccfb23152747"
+ "UKWEST:20190210T094150Z:a377c5c9-b1ca-4b79-948d-7f1985cb7c0e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -273,7 +2337,7 @@
"nosniff"
],
"Content-Length": [
- "407"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -282,20 +2346,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/Clusters/kustoclusterforclients/Databases/testdatabase2955\",\r\n \"name\": \"kustoclusterforclients/testdatabase2955\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"v4.0\\\"\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 6,\r\n \"hotCachePeriodInDays\": 3,\r\n \"provisioningState\": \"Accepted\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/a0fedd72-1bfd-49e1-b424-b3f9586729c2?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2EwZmVkZDcyLTFiZmQtNDllMS1iNDI0LWIzZjk1ODY3MjljMj9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -303,31 +2367,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:32:38 GMT"
+ "Sun, 10 Feb 2019 09:42:20 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "299"
+ "288"
],
"x-ms-request-id": [
- "f1234e20-15c2-477a-b98a-2a06bf79092a"
+ "f65e4259-fd9c-4546-8e7b-0dea4f9eddbd"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "a4d0695e-a7d8-43bc-a5e4-b5a940924e47"
+ "8749babe-3d6e-4aa7-b4b8-697e43ecf712"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113239Z:a4d0695e-a7d8-43bc-a5e4-b5a940924e47"
+ "UKWEST:20190210T094220Z:8749babe-3d6e-4aa7-b4b8-697e43ecf712"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -336,7 +2400,7 @@
"nosniff"
],
"Content-Length": [
- "438"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -345,20 +2409,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/a0fedd72-1bfd-49e1-b424-b3f9586729c2\",\r\n \"name\": \"a0fedd72-1bfd-49e1-b424-b3f9586729c2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-11-15T11:32:07.3730911Z\",\r\n \"endTime\": \"2018-11-15T11:32:13.1294043Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseCreate\",\r\n \"RootActivityId\": \"8dd30277-c40e-49e0-85e8-d65b647ae440\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/clusters/kustoclusterforclients/databases/testdatabase2955?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL29mZXJ0ZXN0Z3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy9rdXN0b2NsdXN0ZXJmb3JjbGllbnRzL2RhdGFiYXNlcy90ZXN0ZGF0YWJhc2UyOTU1P2FwaS12ZXJzaW9uPTIwMTgtMDktMDctcHJldmlldw==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -366,34 +2430,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:32:38 GMT"
+ "Sun, 10 Feb 2019 09:42:50 GMT"
],
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"v4.0\""
- ],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "299"
+ "287"
],
"x-ms-request-id": [
- "e9233b7a-beaf-4c0f-bb33-36499ebeec9c"
+ "324cc639-5336-4ae2-9db3-fed2b5319a0d"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "b3c46faa-5694-431f-94d4-f40fd8ae1a10"
+ "89230acd-adb5-4a8b-aa70-1bb95adf19af"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113239Z:b3c46faa-5694-431f-94d4-f40fd8ae1a10"
+ "UKWEST:20190210T094251Z:89230acd-adb5-4a8b-aa70-1bb95adf19af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -402,7 +2463,7 @@
"nosniff"
],
"Content-Length": [
- "444"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -411,26 +2472,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/Clusters/kustoclusterforclients/Databases/testdatabase2955\",\r\n \"name\": \"kustoclusterforclients/testdatabase2955\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"v4.0\\\"\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 4,\r\n \"hotCachePeriodInDays\": 2,\r\n \"statistics\": {\r\n \"size\": 0.0\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/clusters/kustoclusterforclients/databases/testdatabase2955?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL29mZXJ0ZXN0Z3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy9rdXN0b2NsdXN0ZXJmb3JjbGllbnRzL2RhdGFiYXNlcy90ZXN0ZGF0YWJhc2UyOTU1P2FwaS12ZXJzaW9uPTIwMTgtMDktMDctcHJldmlldw==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "32d01276-dbcd-4588-beeb-563b9a0c430f"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -438,34 +2493,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:32:39 GMT"
+ "Sun, 10 Feb 2019 09:43:22 GMT"
],
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"v4.0\""
- ],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "298"
+ "286"
],
"x-ms-request-id": [
- "476ec1e9-f625-45c5-a7d7-d046a3960ed3"
+ "506336d1-d1f6-4585-80d7-278e70f16666"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "ee0476c7-953f-4ced-8a32-8cc04b31384d"
+ "04c4733d-bb4c-45fc-ac6d-b3bd21a71eae"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113239Z:ee0476c7-953f-4ced-8a32-8cc04b31384d"
+ "UKWEST:20190210T094323Z:04c4733d-bb4c-45fc-ac6d-b3bd21a71eae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -474,7 +2526,7 @@
"nosniff"
],
"Content-Length": [
- "444"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -483,20 +2535,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/Clusters/kustoclusterforclients/Databases/testdatabase2955\",\r\n \"name\": \"kustoclusterforclients/testdatabase2955\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"v4.0\\\"\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 4,\r\n \"hotCachePeriodInDays\": 2,\r\n \"statistics\": {\r\n \"size\": 0.0\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/clusters/kustoclusterforclients/databases/testdatabase2955?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL29mZXJ0ZXN0Z3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy9rdXN0b2NsdXN0ZXJmb3JjbGllbnRzL2RhdGFiYXNlcy90ZXN0ZGF0YWJhc2UyOTU1P2FwaS12ZXJzaW9uPTIwMTgtMDktMDctcHJldmlldw==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -504,34 +2556,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:33:11 GMT"
+ "Sun, 10 Feb 2019 09:43:52 GMT"
],
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"v6.0\""
- ],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "297"
+ "285"
],
"x-ms-request-id": [
- "b02fbe66-3c92-4aa0-aa3d-426ae49988ec"
+ "bd4c1423-ff5d-4455-aa5a-441940ad022d"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "82167a88-50c6-4c50-b972-fee64dbf2392"
+ "e80565f1-001f-42a9-a2b0-84d09eea5365"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113311Z:82167a88-50c6-4c50-b972-fee64dbf2392"
+ "UKWEST:20190210T094353Z:e80565f1-001f-42a9-a2b0-84d09eea5365"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -540,7 +2589,7 @@
"nosniff"
],
"Content-Length": [
- "444"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -549,26 +2598,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/Clusters/kustoclusterforclients/Databases/testdatabase2955\",\r\n \"name\": \"kustoclusterforclients/testdatabase2955\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\",\r\n \"etag\": \"\\\"v6.0\\\"\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"softDeletePeriodInDays\": 6,\r\n \"hotCachePeriodInDays\": 3,\r\n \"statistics\": {\r\n \"size\": 0.0\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/clusters/kustoclusterforclients/databases/testdatabase2955?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL29mZXJ0ZXN0Z3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy9rdXN0b2NsdXN0ZXJmb3JjbGllbnRzL2RhdGFiYXNlcy90ZXN0ZGF0YWJhc2UyOTU1P2FwaS12ZXJzaW9uPTIwMTgtMDktMDctcHJldmlldw==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "3deecb52-1727-4864-97eb-f424783f38ce"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -576,22 +2619,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:33:43 GMT"
+ "Sun, 10 Feb 2019 09:44:23 GMT"
],
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "284"
],
"x-ms-request-id": [
- "ea1d2f44-0d5a-485d-b973-e2e403ab8d2d"
+ "8de003c5-8c2e-4c01-8c09-586198f3f846"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
],
"x-ms-correlation-request-id": [
- "ea1d2f44-0d5a-485d-b973-e2e403ab8d2d"
+ "0b3217b1-90e2-4cc2-9ba2-810ba7e7a866"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113343Z:ea1d2f44-0d5a-485d-b973-e2e403ab8d2d"
+ "UKWEST:20190210T094423Z:0b3217b1-90e2-4cc2-9ba2-810ba7e7a866"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -600,7 +2652,7 @@
"nosniff"
],
"Content-Length": [
- "191"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -609,20 +2661,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Kusto/clusters/kustoclusterforclients/databases/testdatabase2955' under resource group 'ofertestgroup' was not found.\"\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/abddac3f-2a16-4d76-a762-41d42ef03951?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2FiZGRhYzNmLTJhMTYtNGQ3Ni1hNzYyLTQxZDQyZWYwMzk1MT9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -630,31 +2682,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:33:10 GMT"
+ "Sun, 10 Feb 2019 09:44:54 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "298"
+ "283"
],
"x-ms-request-id": [
- "7d8770cc-3b2a-436f-98f1-89515541cc49"
+ "704459c3-91c8-4793-af10-af19275ae99a"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "71a5d572-4d64-4b95-8f99-c1c5e0a935fc"
+ "a2422142-15f6-4d0f-ab61-822073351ebb"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113310Z:71a5d572-4d64-4b95-8f99-c1c5e0a935fc"
+ "UKWEST:20190210T094454Z:a2422142-15f6-4d0f-ab61-822073351ebb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -663,7 +2715,7 @@
"nosniff"
],
"Content-Length": [
- "438"
+ "465"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -672,26 +2724,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/abddac3f-2a16-4d76-a762-41d42ef03951\",\r\n \"name\": \"abddac3f-2a16-4d76-a762-41d42ef03951\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-11-15T11:32:40.1185726Z\",\r\n \"endTime\": \"2018-11-15T11:32:42.6030504Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseCreate\",\r\n \"RootActivityId\": \"6c9400a4-523b-423f-b248-931848343922\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/ofertestgroup/providers/Microsoft.Kusto/clusters/kustoclusterforclients/databases/testdatabase2955?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlR3JvdXBzL29mZXJ0ZXN0Z3JvdXAvcHJvdmlkZXJzL01pY3Jvc29mdC5LdXN0by9jbHVzdGVycy9rdXN0b2NsdXN0ZXJmb3JjbGllbnRzL2RhdGFiYXNlcy90ZXN0ZGF0YWJhc2UyOTU1P2FwaS12ZXJzaW9uPTIwMTgtMDktMDctcHJldmlldw==",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "1883fdf7-ad54-401b-b444-e4823bedda25"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -699,34 +2745,94 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:33:12 GMT"
+ "Sun, 10 Feb 2019 09:45:24 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/020122db-8e6d-4f16-b67a-cf2de3923ad3?api-version=2018-09-07-preview&operationResultResponseType=Location"
- ],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationResults/020122db-8e6d-4f16-b67a-cf2de3923ad3?api-version=2018-09-07-preview"
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "289"
+ ],
+ "x-ms-request-id": [
+ "01668b4e-c225-47b4-b486-991e58116076"
],
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-correlation-request-id": [
+ "e714481b-1090-4e00-9995-7cf9665556b4"
+ ],
+ "x-ms-routing-request-id": [
+ "UKWEST:20190210T094524Z:e714481b-1090-4e00-9995-7cf9665556b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Sun, 10 Feb 2019 09:45:54 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Set-Cookie": [
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "288"
],
"x-ms-request-id": [
- "3d54b604-fdb8-4e14-b33e-b3779d6626cc"
+ "f99a0efe-2fa8-4c16-b4e3-daee6e2b4b9d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
],
"x-ms-correlation-request-id": [
- "3d54b604-fdb8-4e14-b33e-b3779d6626cc"
+ "46bd0eb5-58d7-484d-8c8b-b5f6a339d6db"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113312Z:3d54b604-fdb8-4e14-b33e-b3779d6626cc"
+ "UKWEST:20190210T094555Z:46bd0eb5-58d7-484d-8c8b-b5f6a339d6db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -735,26 +2841,29 @@
"nosniff"
],
"Content-Length": [
- "0"
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Running\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"percentComplete\": 0.5,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Running\"\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/020122db-8e6d-4f16-b67a-cf2de3923ad3?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzAyMDEyMmRiLThlNmQtNGYxNi1iNjdhLWNmMmRlMzkyM2FkMz9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -762,31 +2871,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:33:42 GMT"
+ "Sun, 10 Feb 2019 09:46:25 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "297"
+ "287"
],
"x-ms-request-id": [
- "1c45a83b-2368-4d1f-99c2-f9047a876e70"
+ "52192567-a475-4185-a5d0-b0761d87b611"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "8610d9ef-0ccd-4bb0-be52-4061d173abb3"
+ "e57110f1-ba06-433b-a179-adcc9c9a1b76"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113342Z:8610d9ef-0ccd-4bb0-be52-4061d173abb3"
+ "UKWEST:20190210T094626Z:e57110f1-ba06-433b-a179-adcc9c9a1b76"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -795,7 +2904,7 @@
"nosniff"
],
"Content-Length": [
- "438"
+ "469"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -804,20 +2913,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/020122db-8e6d-4f16-b67a-cf2de3923ad3\",\r\n \"name\": \"020122db-8e6d-4f16-b67a-cf2de3923ad3\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-11-15T11:33:12.4171057Z\",\r\n \"endTime\": \"2018-11-15T11:33:15.1672253Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"DatabaseDelete\",\r\n \"RootActivityId\": \"277745a0-c802-4586-9e71-19f850b5c4f5\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central US/operationresults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"name\": \"c4ff12b2-c6a9-458b-a809-5f1fb2945de7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-02-10T09:41:19.3988336Z\",\r\n \"endTime\": \"2019-02-10T09:46:06.1827015Z\",\r\n \"percentComplete\": 1.0,\r\n \"properties\": {\r\n \"OperationKind\": \"ClusterDelete\",\r\n \"RootActivityId\": \"4368c8c2-29e5-4af7-a4ff-5aa7dd375ec0\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/020122db-8e6d-4f16-b67a-cf2de3923ad3?api-version=2018-09-07-preview&operationResultResponseType=Location",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzLzAyMDEyMmRiLThlNmQtNGYxNi1iNjdhLWNmMmRlMzkyM2FkMz9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXcmb3BlcmF0aW9uUmVzdWx0UmVzcG9uc2VUeXBlPUxvY2F0aW9u",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/Central%20US/operationResults/c4ff12b2-c6a9-458b-a809-5f1fb2945de7?api-version=2019-01-21&operationResultResponseType=Location",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vbG9jYXRpb25zL0NlbnRyYWwlMjBVUy9vcGVyYXRpb25SZXN1bHRzL2M0ZmYxMmIyLWM2YTktNDU4Yi1hODA5LTVmMWZiMjk0NWRlNz9hcGktdmVyc2lvbj0yMDE5LTAxLTIxJm9wZXJhdGlvblJlc3VsdFJlc3BvbnNlVHlwZT1Mb2NhdGlvbg==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -825,31 +2934,31 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 11:33:42 GMT"
+ "Sun, 10 Feb 2019 09:46:26 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=abf0220645ea22573568610313bec0b920fd62831eeab85513f40eb93050918a;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
+ "ARRAffinity=83e1e916dbae1fadbdcfc01ef23633ffb85e1f9d6aadc6405bdeeeef9bc61400;Path=/;HttpOnly;Domain=rp-kustorpcus-website.azurewebsites.net"
],
"Vary": [
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "296"
+ "286"
],
"x-ms-request-id": [
- "d2a66fb1-5e39-4d13-8829-2cc7af2499c5"
+ "9d2e1918-82cd-4fa1-91df-c9e0630487cb"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "adbcfbb1-3a3d-4223-82dd-667cff0c8b34"
+ "20a0d7e6-9179-49ab-98d4-13d88a5f3f57"
],
"x-ms-routing-request-id": [
- "UKSOUTH2:20181115T113342Z:adbcfbb1-3a3d-4223-82dd-667cff0c8b34"
+ "UKWEST:20190210T094626Z:20a0d7e6-9179-49ab-98d4-13d88a5f3f57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -873,10 +2982,10 @@
],
"Names": {
"Initialize": [
- "sdktestrg7133",
- "testcluster8314",
- "testdatabase2955",
- "eventhubConection9271"
+ "sdktestrg2482",
+ "testcluster2964",
+ "testdatabase7498",
+ "eventhubConection7222"
]
},
"Variables": {
diff --git a/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/OperationsTest.json b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/OperationsTest.json
index 383b2a8402ac..eb2fae3edf9c 100644
--- a/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/OperationsTest.json
+++ b/src/SDKs/Kusto/Kusto.Tests/SessionRecords/Kusto.Tests.ScenarioTests.KustoOperationsTests/OperationsTest.json
@@ -7,13 +7,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fea2111a-cab3-4564-944d-dded4448bad7"
+ "8454ffaf-38f2-486e-b56b-6b3b9d5854f3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -24,22 +24,22 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 12:31:51 GMT"
+ "Sun, 10 Feb 2019 08:37:43 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-request-id": [
- "0a7b89b8-e573-4a26-87d3-66a669191466"
+ "547bd24e-3393-4b61-a48c-7a3ff4d3a862"
],
"x-ms-correlation-request-id": [
- "0a7b89b8-e573-4a26-87d3-66a669191466"
+ "547bd24e-3393-4b61-a48c-7a3ff4d3a862"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181115T123151Z:0a7b89b8-e573-4a26-87d3-66a669191466"
+ "UKWEST:20190210T083743Z:547bd24e-3393-4b61-a48c-7a3ff4d3a862"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,7 +48,7 @@
"nosniff"
],
"Content-Length": [
- "3160"
+ "3764"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -57,23 +57,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdktestrg4648?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzQ2NDg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/sdktestrg3129?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTFkNWYxNTktYTIxZC00YTZjLTgwNTMtYzNhYWUzMDA1N2NmL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzMxMjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f75f020-32c1-4c10-934d-acf295e49a13"
+ "a866bce4-bcf5-4d2e-ae34-059b1a4684f6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -90,7 +90,7 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 12:31:52 GMT"
+ "Sun, 10 Feb 2019 08:37:45 GMT"
],
"Pragma": [
"no-cache"
@@ -99,13 +99,13 @@
"1199"
],
"x-ms-request-id": [
- "348ac35e-8828-4549-a2e2-6fd8ecf04ef4"
+ "370aaa1e-2894-4f73-970d-195c11fadaae"
],
"x-ms-correlation-request-id": [
- "348ac35e-8828-4549-a2e2-6fd8ecf04ef4"
+ "370aaa1e-2894-4f73-970d-195c11fadaae"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181115T123153Z:348ac35e-8828-4549-a2e2-6fd8ecf04ef4"
+ "UKWEST:20190210T083746Z:370aaa1e-2894-4f73-970d-195c11fadaae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg4648\",\r\n \"name\": \"sdktestrg4648\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/sdktestrg3129\",\r\n \"name\": \"sdktestrg3129\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/providers/Microsoft.Kusto/operations?api-version=2018-09-07-preview",
- "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTA5LTA3LXByZXZpZXc=",
+ "RequestUri": "/providers/Microsoft.Kusto/operations?api-version=2019-01-21",
+ "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuS3VzdG8vb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTAxLTIx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2fefb74-2413-4024-9feb-f9e8e76230a6"
+ "a1c2194e-1f46-40d8-bc23-8e9e393d4bd3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -150,13 +150,13 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 12:31:53 GMT"
+ "Sun, 10 Feb 2019 08:37:46 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=da707b3825b91e084a424d4b1614c995e6c8af5c69b6afb8e1f79878eb39b18f;Path=/;HttpOnly;Domain=kusto-rp.kusto.windows.net"
+ "ARRAffinity=aa0b80ec9f318cd027fba575d7d4ed3caa2df8eaf15ad3159ebe549845be6d65;Path=/;HttpOnly;Domain=kusto-rp.kusto.windows.net"
],
"Vary": [
"Accept-Encoding"
@@ -165,16 +165,16 @@
"11999"
],
"x-ms-request-id": [
- "64005f41-d1f6-424b-a598-64c6f13d6995"
+ "a710b220-09e3-4d08-8f8c-2eba676b5dc0"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "1b2c8dd2-dafb-4e06-807a-c1cc9a0e824d"
+ "41c5ca18-07b2-46d8-8a95-a3422eb3c654"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181115T123154Z:1b2c8dd2-dafb-4e06-807a-c1cc9a0e824d"
+ "UKWEST:20190210T083746Z:41c5ca18-07b2-46d8-8a95-a3422eb3c654"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -183,7 +183,7 @@
"nosniff"
],
"Content-Length": [
- "8109"
+ "11549"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -192,7 +192,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Kusto/Locations/CheckNameAvailability/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Check name availability resource type\",\r\n \"operation\": \"Reads a check name availability resource\",\r\n \"description\": \"Reads check name availability resource\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/locations/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Operations resource type\",\r\n \"operation\": \"Read operations resources\",\r\n \"description\": \"Reads operations resources\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Read cluster resource\",\r\n \"description\": \"Reads a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Write cluster resource\",\r\n \"description\": \"Writes a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Delete cluster resource\",\r\n \"description\": \"Deletes a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Read diagnostic setting\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Write diagnostic setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"ClusterDataCapacityFactor\",\r\n \"displayName\": \"Cache Utilization\",\r\n \"displayDescription\": \"Utilization level in the cluster scope\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"name\": \"QueryDuration\",\r\n \"displayName\": \"Query Duration\",\r\n \"displayDescription\": \"Queries’ duration in seconds\",\r\n \"unit\": \"Milliseconds\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"QueryStatus\",\r\n \"displayName\": \"Query Status\"\r\n }\r\n ],\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"IngestionsLoadFactor\",\r\n \"displayName\": \"Ingestion Utilization\",\r\n \"displayDescription\": \"Ratio of used ingestion slots in the cluster\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\"\r\n ],\r\n \"name\": \"IsEngineAnsweringQuery\",\r\n \"displayName\": \"Keep Alive\",\r\n \"displayDescription\": \"Sanity check indicates the cluster respondes to queries\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Total\"\r\n ],\r\n \"name\": \"IngestCommandOriginalSizeInMb\",\r\n \"displayName\": \"Ingestion Volume (In MB)\",\r\n \"displayDescription\": \"Overall volume of ingested data to the cluster (in MB)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"EventAgeSeconds\",\r\n \"displayName\": \"Ingestion Latency (In seconds)\",\r\n \"displayDescription\": \"Ingestion time from the source (e.g. message is in EventHub) to the cluster in seconds\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Total\"\r\n ],\r\n \"name\": \"EventRecievedFromEventHub\",\r\n \"displayName\": \"Events Processed (for Event Hubs)\",\r\n \"displayDescription\": \"Number of events processed by the cluster when ingesting from Event Hub\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Count\"\r\n ],\r\n \"name\": \"IngestionResult\",\r\n \"displayName\": \"Ingestion Result\",\r\n \"displayDescription\": \"Number of ingestion operations\",\r\n \"unit\": \"Count\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"IngestionResultDetails\",\r\n \"displayName\": \"Status\"\r\n }\r\n ],\r\n \"aggregationType\": \"Count\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"EngineCPU\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU utilization level\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"The metric definition of Kusto\",\r\n \"operation\": \"Reads Kusto metric definitions\",\r\n \"description\": \"Gets the metric definitions of the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Read database resource\",\r\n \"description\": \"Reads a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Write database resource\",\r\n \"description\": \"Writes a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Delete database resource\",\r\n \"description\": \"Deletes a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Read a data connections resource\",\r\n \"description\": \"Reads a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Write a data connections resource\",\r\n \"description\": \"Writes an data connetions resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Delete a data connections resource\",\r\n \"description\": \"Deletes a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Read a data connections resource\",\r\n \"description\": \"Reads a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Write a data connections resource\",\r\n \"description\": \"Writes an data connetions resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Delete a data connections resource\",\r\n \"description\": \"Deletes a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Operations/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Operations resource type\",\r\n \"operation\": \"Read operations resources\",\r\n \"description\": \"Reads operations resources\"\r\n },\r\n \"origin\": \"user,system\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Kusto/Locations/CheckNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Check name availability resource type\",\r\n \"operation\": \"Check name availability action\",\r\n \"description\": \"Checks resource name availability.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/locations/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Operations resource type\",\r\n \"operation\": \"Read operations resources\",\r\n \"description\": \"Reads operations resources\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Read cluster resource\",\r\n \"description\": \"Reads a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Write cluster resource\",\r\n \"description\": \"Writes a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Delete cluster resource\",\r\n \"description\": \"Deletes a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Read diagnostic setting\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Write diagnostic setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/SKUs/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Cluster SKUs resource type\",\r\n \"operation\": \"Read cluster SKU resource\",\r\n \"description\": \"Reads a cluster SKU resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/SKUs/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"SKUs resource type\",\r\n \"operation\": \"Read SKU resource\",\r\n \"description\": \"Reads a SKU resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Start/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster start action\",\r\n \"description\": \"Starts the cluster.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Stop/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster stop action\",\r\n \"description\": \"Stops the cluster.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Activate/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster activate action\",\r\n \"description\": \"Starts the cluster.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Deactivate/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster deactivate action\",\r\n \"description\": \"Stops the cluster.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/CheckNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster check name availability action\",\r\n \"description\": \"Checks the cluster name availability.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Register/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"operation\": \"Register action\",\r\n \"description\": \"Registers the subscription to the Kusto Resource Provider.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Unregister/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"operation\": \"Unregister action\",\r\n \"description\": \"Unregisters the subscription to the Kusto Resource Provider.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"ClusterDataCapacityFactor\",\r\n \"displayName\": \"Cache Utilization\",\r\n \"displayDescription\": \"Utilization level in the cluster scope\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"name\": \"QueryDuration\",\r\n \"displayName\": \"Query Duration\",\r\n \"displayDescription\": \"Queries’ duration in seconds\",\r\n \"unit\": \"Milliseconds\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"QueryStatus\",\r\n \"displayName\": \"Query Status\"\r\n }\r\n ],\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"IngestionsLoadFactor\",\r\n \"displayName\": \"Ingestion Utilization\",\r\n \"displayDescription\": \"Ratio of used ingestion slots in the cluster\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\"\r\n ],\r\n \"name\": \"IsEngineAnsweringQuery\",\r\n \"displayName\": \"Keep Alive\",\r\n \"displayDescription\": \"Sanity check indicates the cluster respondes to queries\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Total\"\r\n ],\r\n \"name\": \"IngestCommandOriginalSizeInMb\",\r\n \"displayName\": \"Ingestion Volume (In MB)\",\r\n \"displayDescription\": \"Overall volume of ingested data to the cluster (in MB)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"IngestedEventAgeSeconds\",\r\n \"displayName\": \"Ingestion Latency (In seconds)\",\r\n \"displayDescription\": \"Ingestion time from the source (e.g. message is in EventHub) to the cluster in seconds\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Total\"\r\n ],\r\n \"name\": \"EventRecievedFromEventHub\",\r\n \"displayName\": \"Events Processed (for Event Hubs)\",\r\n \"displayDescription\": \"Number of events processed by the cluster when ingesting from Event Hub\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Count\"\r\n ],\r\n \"name\": \"IngestionResult\",\r\n \"displayName\": \"Ingestion Result\",\r\n \"displayDescription\": \"Number of ingestion operations\",\r\n \"unit\": \"Count\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"IngestionResultDetails\",\r\n \"displayName\": \"Status\"\r\n }\r\n ],\r\n \"aggregationType\": \"Count\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"EngineCPU\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU utilization level\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"The metric definition of Kusto\",\r\n \"operation\": \"Reads Kusto metric definitions\",\r\n \"description\": \"Gets the metric definitions of the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Read database resource\",\r\n \"description\": \"Reads a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Write database resource\",\r\n \"description\": \"Writes a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Delete database resource\",\r\n \"description\": \"Deletes a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/ListPrincipals/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"List database principals action\",\r\n \"description\": \"Lists database principals.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/AddPrincipals/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Add database principals action\",\r\n \"description\": \"Adds database principals.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/RemovePrincipals/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Remove database principals action\",\r\n \"description\": \"Removes database principals.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/DataConnectionValidation/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Data connection validation action\",\r\n \"description\": \"Validates database data connection.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnectionValidation/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Event Hub connection validation action\",\r\n \"description\": \"Validates database Event Hub connection.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Event Hub connections resource type\",\r\n \"operation\": \"Read a Event Hub connections resource\",\r\n \"description\": \"Reads a Event Hub connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Event Hub connections resource type\",\r\n \"operation\": \"Write a Event Hub connections resource\",\r\n \"description\": \"Writes an Event Hub connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Event Hub connections resource type\",\r\n \"operation\": \"Delete a Event Hub connections resource\",\r\n \"description\": \"Deletes a Event Hub connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/DataConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Read a data connections resource\",\r\n \"description\": \"Reads a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/DataConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Write a data connections resource\",\r\n \"description\": \"Writes an data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/DataConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Delete a data connections resource\",\r\n \"description\": \"Deletes a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Operations/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Operations resource type\",\r\n \"operation\": \"Read operations resources\",\r\n \"description\": \"Reads operations resources\"\r\n },\r\n \"origin\": \"user,system\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -202,16 +202,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "655098c1-1827-444b-afd0-4bdd34d8533d"
+ "dd41e500-eec2-4031-ae97-120c8b7648df"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26212.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Kusto.KustoManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.Kusto.KustoManagementClient/0.9.0.0"
]
},
"ResponseHeaders": {
@@ -219,13 +219,13 @@
"no-cache"
],
"Date": [
- "Thu, 15 Nov 2018 12:31:53 GMT"
+ "Sun, 10 Feb 2019 08:37:46 GMT"
],
"Pragma": [
"no-cache"
],
"Set-Cookie": [
- "ARRAffinity=da707b3825b91e084a424d4b1614c995e6c8af5c69b6afb8e1f79878eb39b18f;Path=/;HttpOnly;Domain=kusto-rp.kusto.windows.net"
+ "ARRAffinity=aa0b80ec9f318cd027fba575d7d4ed3caa2df8eaf15ad3159ebe549845be6d65;Path=/;HttpOnly;Domain=kusto-rp.kusto.windows.net"
],
"Vary": [
"Accept-Encoding"
@@ -234,16 +234,16 @@
"11998"
],
"x-ms-request-id": [
- "0f7c048c-ec7d-4a49-9d98-e126b8f5bcdb"
+ "d8e6dbc2-4474-4db3-85bd-8c79faf524b6"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-correlation-request-id": [
- "9857f93c-40b7-479f-9e9f-124832e9dadd"
+ "7d2a0590-eed6-4743-8082-d92ca54b4a56"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20181115T123154Z:9857f93c-40b7-479f-9e9f-124832e9dadd"
+ "UKWEST:20190210T083746Z:7d2a0590-eed6-4743-8082-d92ca54b4a56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -252,7 +252,7 @@
"nosniff"
],
"Content-Length": [
- "8109"
+ "11549"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,16 +261,16 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Kusto/Locations/CheckNameAvailability/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Check name availability resource type\",\r\n \"operation\": \"Reads a check name availability resource\",\r\n \"description\": \"Reads check name availability resource\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/locations/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Operations resource type\",\r\n \"operation\": \"Read operations resources\",\r\n \"description\": \"Reads operations resources\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Read cluster resource\",\r\n \"description\": \"Reads a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Write cluster resource\",\r\n \"description\": \"Writes a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Delete cluster resource\",\r\n \"description\": \"Deletes a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Read diagnostic setting\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Write diagnostic setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"ClusterDataCapacityFactor\",\r\n \"displayName\": \"Cache Utilization\",\r\n \"displayDescription\": \"Utilization level in the cluster scope\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"name\": \"QueryDuration\",\r\n \"displayName\": \"Query Duration\",\r\n \"displayDescription\": \"Queries’ duration in seconds\",\r\n \"unit\": \"Milliseconds\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"QueryStatus\",\r\n \"displayName\": \"Query Status\"\r\n }\r\n ],\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"IngestionsLoadFactor\",\r\n \"displayName\": \"Ingestion Utilization\",\r\n \"displayDescription\": \"Ratio of used ingestion slots in the cluster\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\"\r\n ],\r\n \"name\": \"IsEngineAnsweringQuery\",\r\n \"displayName\": \"Keep Alive\",\r\n \"displayDescription\": \"Sanity check indicates the cluster respondes to queries\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Total\"\r\n ],\r\n \"name\": \"IngestCommandOriginalSizeInMb\",\r\n \"displayName\": \"Ingestion Volume (In MB)\",\r\n \"displayDescription\": \"Overall volume of ingested data to the cluster (in MB)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"EventAgeSeconds\",\r\n \"displayName\": \"Ingestion Latency (In seconds)\",\r\n \"displayDescription\": \"Ingestion time from the source (e.g. message is in EventHub) to the cluster in seconds\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Total\"\r\n ],\r\n \"name\": \"EventRecievedFromEventHub\",\r\n \"displayName\": \"Events Processed (for Event Hubs)\",\r\n \"displayDescription\": \"Number of events processed by the cluster when ingesting from Event Hub\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Count\"\r\n ],\r\n \"name\": \"IngestionResult\",\r\n \"displayName\": \"Ingestion Result\",\r\n \"displayDescription\": \"Number of ingestion operations\",\r\n \"unit\": \"Count\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"IngestionResultDetails\",\r\n \"displayName\": \"Status\"\r\n }\r\n ],\r\n \"aggregationType\": \"Count\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"EngineCPU\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU utilization level\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"The metric definition of Kusto\",\r\n \"operation\": \"Reads Kusto metric definitions\",\r\n \"description\": \"Gets the metric definitions of the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Read database resource\",\r\n \"description\": \"Reads a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Write database resource\",\r\n \"description\": \"Writes a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Delete database resource\",\r\n \"description\": \"Deletes a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Read a data connections resource\",\r\n \"description\": \"Reads a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Write a data connections resource\",\r\n \"description\": \"Writes an data connetions resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Delete a data connections resource\",\r\n \"description\": \"Deletes a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Read a data connections resource\",\r\n \"description\": \"Reads a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Write a data connections resource\",\r\n \"description\": \"Writes an data connetions resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Delete a data connections resource\",\r\n \"description\": \"Deletes a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Operations/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Operations resource type\",\r\n \"operation\": \"Read operations resources\",\r\n \"description\": \"Reads operations resources\"\r\n },\r\n \"origin\": \"user,system\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Kusto/Locations/CheckNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Check name availability resource type\",\r\n \"operation\": \"Check name availability action\",\r\n \"description\": \"Checks resource name availability.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/locations/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Operations resource type\",\r\n \"operation\": \"Read operations resources\",\r\n \"description\": \"Reads operations resources\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Read cluster resource\",\r\n \"description\": \"Reads a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Write cluster resource\",\r\n \"description\": \"Writes a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Delete cluster resource\",\r\n \"description\": \"Deletes a cluster resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Read diagnostic setting\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Write diagnostic setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/SKUs/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Cluster SKUs resource type\",\r\n \"operation\": \"Read cluster SKU resource\",\r\n \"description\": \"Reads a cluster SKU resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/SKUs/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"SKUs resource type\",\r\n \"operation\": \"Read SKU resource\",\r\n \"description\": \"Reads a SKU resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Start/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster start action\",\r\n \"description\": \"Starts the cluster.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Stop/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster stop action\",\r\n \"description\": \"Stops the cluster.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Activate/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster activate action\",\r\n \"description\": \"Starts the cluster.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Deactivate/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster deactivate action\",\r\n \"description\": \"Stops the cluster.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/CheckNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Clusters resource type\",\r\n \"operation\": \"Cluster check name availability action\",\r\n \"description\": \"Checks the cluster name availability.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Register/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"operation\": \"Register action\",\r\n \"description\": \"Registers the subscription to the Kusto Resource Provider.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Unregister/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"operation\": \"Unregister action\",\r\n \"description\": \"Unregisters the subscription to the Kusto Resource Provider.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"ClusterDataCapacityFactor\",\r\n \"displayName\": \"Cache Utilization\",\r\n \"displayDescription\": \"Utilization level in the cluster scope\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"name\": \"QueryDuration\",\r\n \"displayName\": \"Query Duration\",\r\n \"displayDescription\": \"Queries’ duration in seconds\",\r\n \"unit\": \"Milliseconds\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"QueryStatus\",\r\n \"displayName\": \"Query Status\"\r\n }\r\n ],\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"IngestionsLoadFactor\",\r\n \"displayName\": \"Ingestion Utilization\",\r\n \"displayDescription\": \"Ratio of used ingestion slots in the cluster\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\"\r\n ],\r\n \"name\": \"IsEngineAnsweringQuery\",\r\n \"displayName\": \"Keep Alive\",\r\n \"displayDescription\": \"Sanity check indicates the cluster respondes to queries\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Total\"\r\n ],\r\n \"name\": \"IngestCommandOriginalSizeInMb\",\r\n \"displayName\": \"Ingestion Volume (In MB)\",\r\n \"displayDescription\": \"Overall volume of ingested data to the cluster (in MB)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"IngestedEventAgeSeconds\",\r\n \"displayName\": \"Ingestion Latency (In seconds)\",\r\n \"displayDescription\": \"Ingestion time from the source (e.g. message is in EventHub) to the cluster in seconds\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Total\"\r\n ],\r\n \"name\": \"EventRecievedFromEventHub\",\r\n \"displayName\": \"Events Processed (for Event Hubs)\",\r\n \"displayDescription\": \"Number of events processed by the cluster when ingesting from Event Hub\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Count\"\r\n ],\r\n \"name\": \"IngestionResult\",\r\n \"displayName\": \"Ingestion Result\",\r\n \"displayDescription\": \"Number of ingestion operations\",\r\n \"unit\": \"Count\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"IngestionResultDetails\",\r\n \"displayName\": \"Status\"\r\n }\r\n ],\r\n \"aggregationType\": \"Count\",\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmNamespace\": \"CustomerMetircs\",\r\n \"sourceMdmAccount\": \"Kusto\",\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Maximum\",\r\n \"Minimum\"\r\n ],\r\n \"name\": \"EngineCPU\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU utilization level\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"Microsoft.Kusto/Clusters/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"The metric definition of Kusto\",\r\n \"operation\": \"Reads Kusto metric definitions\",\r\n \"description\": \"Gets the metric definitions of the resource\"\r\n },\r\n \"origin\": \"system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Read database resource\",\r\n \"description\": \"Reads a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Write database resource\",\r\n \"description\": \"Writes a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Delete database resource\",\r\n \"description\": \"Deletes a database resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/ListPrincipals/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"List database principals action\",\r\n \"description\": \"Lists database principals.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/AddPrincipals/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Add database principals action\",\r\n \"description\": \"Adds database principals.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/RemovePrincipals/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Remove database principals action\",\r\n \"description\": \"Removes database principals.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/DataConnectionValidation/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Data connection validation action\",\r\n \"description\": \"Validates database data connection.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnectionValidation/action\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Databases resource type\",\r\n \"operation\": \"Event Hub connection validation action\",\r\n \"description\": \"Validates database Event Hub connection.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Event Hub connections resource type\",\r\n \"operation\": \"Read a Event Hub connections resource\",\r\n \"description\": \"Reads a Event Hub connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Event Hub connections resource type\",\r\n \"operation\": \"Write a Event Hub connections resource\",\r\n \"description\": \"Writes an Event Hub connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/EventHubConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Event Hub connections resource type\",\r\n \"operation\": \"Delete a Event Hub connections resource\",\r\n \"description\": \"Deletes a Event Hub connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/DataConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Read a data connections resource\",\r\n \"description\": \"Reads a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/DataConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Write a data connections resource\",\r\n \"description\": \"Writes an data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Clusters/Databases/DataConnections/delete\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Data connections resource type\",\r\n \"operation\": \"Delete a data connections resource\",\r\n \"description\": \"Deletes a data connections resource.\"\r\n },\r\n \"origin\": \"user,system\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Kusto/Operations/read\",\r\n \"display\": {\r\n \"provider\": \"Resource Provider\",\r\n \"resource\": \"Operations resource type\",\r\n \"operation\": \"Read operations resources\",\r\n \"description\": \"Reads operations resources\"\r\n },\r\n \"origin\": \"user,system\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
}
],
"Names": {
"Initialize": [
- "sdktestrg4648",
- "testcluster1370",
- "testdatabase2523",
- "eventhubConection713"
+ "sdktestrg3129",
+ "testcluster3663",
+ "testdatabase6184",
+ "eventhubConection5312"
]
},
"Variables": {
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/DatabasesOperations.cs b/src/SDKs/Kusto/Management.Kusto/Generated/DatabasesOperations.cs
index 11b214b77443..cbdd1cdae600 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/DatabasesOperations.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/DatabasesOperations.cs
@@ -1444,10 +1444,6 @@ internal DatabasesOperations(KustoManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
}
- if (parameters != null)
- {
- parameters.Validate();
- }
if (Client.SubscriptionId == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/IKustoManagementClient.cs b/src/SDKs/Kusto/Management.Kusto/Generated/IKustoManagementClient.cs
index 6bf5668e6fd5..fdf728f3ab1d 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/IKustoManagementClient.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/IKustoManagementClient.cs
@@ -85,9 +85,9 @@ public partial interface IKustoManagementClient : System.IDisposable
IDatabasesOperations Databases { get; }
///
- /// Gets the IEventHubConnectionsOperations.
+ /// Gets the IDataConnectionsOperations.
///
- IEventHubConnectionsOperations EventHubConnections { get; }
+ IDataConnectionsOperations DataConnections { get; }
///
/// Gets the IOperations.
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/KustoManagementClient.cs b/src/SDKs/Kusto/Management.Kusto/Generated/KustoManagementClient.cs
index a793fb58be4d..757ed0b80e53 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/KustoManagementClient.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/KustoManagementClient.cs
@@ -90,9 +90,9 @@ public partial class KustoManagementClient : ServiceClient
- /// Gets the IEventHubConnectionsOperations.
+ /// Gets the IDataConnectionsOperations.
///
- public virtual IEventHubConnectionsOperations EventHubConnections { get; private set; }
+ public virtual IDataConnectionsOperations DataConnections { get; private set; }
///
/// Gets the IOperations.
@@ -342,10 +342,10 @@ private void Initialize()
{
Clusters = new ClustersOperations(this);
Databases = new DatabasesOperations(this);
- EventHubConnections = new EventHubConnectionsOperations(this);
+ DataConnections = new DataConnectionsOperations(this);
Operations = new Operations(this);
BaseUri = new System.Uri("https://management.azure.com");
- ApiVersion = "2018-09-07-preview";
+ ApiVersion = "2019-01-21";
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
GenerateClientRequestId = true;
@@ -375,6 +375,8 @@ private void Initialize()
new Iso8601TimeSpanConverter()
}
};
+ SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("kind"));
+ DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("kind"));
CustomInitialize();
DeserializationSettings.Converters.Add(new TransformationJsonConverter());
DeserializationSettings.Converters.Add(new CloudErrorJsonConverter());
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureCapacity.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureCapacity.cs
index ecc377864d20..eec445716e9a 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureCapacity.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureCapacity.cs
@@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// Azure capacity definition.
+ ///
public partial class AzureCapacity
{
///
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureResourceSku.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureResourceSku.cs
index fb777d8bfd95..9f3aebbcf598 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureResourceSku.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureResourceSku.cs
@@ -13,6 +13,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// Azure resource SKU definition.
+ ///
public partial class AzureResourceSku
{
///
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureSku.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureSku.cs
index 5b99811b346a..243a242a73b7 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureSku.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureSku.cs
@@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// Azure SKU definition.
+ ///
public partial class AzureSku
{
///
@@ -27,8 +30,8 @@ public AzureSku()
///
/// Initializes a new instance of the AzureSku class.
///
- /// SKU name. Possible values include: 'KC8',
- /// 'KC16', 'KS8', 'KS16', 'D13_v2', 'D14_v2', 'L8', 'L16'
+ /// SKU name. Possible values include: 'D13_v2',
+ /// 'D14_v2', 'L8', 'L16', 'D11_v2', 'D12_v2', 'L4'
/// SKU capacity.
public AzureSku(string name, int? capacity = default(int?))
{
@@ -50,8 +53,8 @@ static AzureSku()
partial void CustomInit();
///
- /// Gets or sets SKU name. Possible values include: 'KC8', 'KC16',
- /// 'KS8', 'KS16', 'D13_v2', 'D14_v2', 'L8', 'L16'
+ /// Gets or sets SKU name. Possible values include: 'D13_v2', 'D14_v2',
+ /// 'L8', 'L16', 'D11_v2', 'D12_v2', 'L4'
///
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureSkuName.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureSkuName.cs
index cbbfedcc4c99..247fbdcf751e 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureSkuName.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/AzureSkuName.cs
@@ -16,13 +16,12 @@ namespace Microsoft.Azure.Management.Kusto.Models
///
public static class AzureSkuName
{
- public const string KC8 = "KC8";
- public const string KC16 = "KC16";
- public const string KS8 = "KS8";
- public const string KS16 = "KS16";
public const string D13V2 = "D13_v2";
public const string D14V2 = "D14_v2";
public const string L8 = "L8";
public const string L16 = "L16";
+ public const string D11V2 = "D11_v2";
+ public const string D12V2 = "D12_v2";
+ public const string L4 = "L4";
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/CheckNameResult.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/CheckNameResult.cs
index 41f11a72bef8..8933bb5a8251 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/CheckNameResult.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/CheckNameResult.cs
@@ -13,6 +13,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// The result returned from a check name availability request.
+ ///
public partial class CheckNameResult
{
///
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/Cluster.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/Cluster.cs
index 7d4e899a5bcf..0248b1beab40 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/Cluster.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/Cluster.cs
@@ -45,10 +45,9 @@ public Cluster()
/// Microsoft.Compute/virtualMachines or
/// Microsoft.Storage/storageAccounts.
/// Resource tags.
- /// An ETag of the resource created.
/// The state of the resource. Possible values
/// include: 'Creating', 'Unavailable', 'Running', 'Deleting',
- /// 'Deleted', 'Stopping', 'Stopped', 'Starting'
+ /// 'Deleted', 'Stopping', 'Stopped', 'Starting', 'Updating'
/// The provisioned state of the
/// resource. Possible values include: 'Running', 'Creating',
/// 'Deleting', 'Succeeded', 'Failed'
@@ -57,10 +56,9 @@ public Cluster()
/// URI.
/// The cluster's external
/// tenants.
- public Cluster(string location, AzureSku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string etag = default(string), string state = default(string), string provisioningState = default(string), string uri = default(string), string dataIngestionUri = default(string), IList trustedExternalTenants = default(IList))
+ public Cluster(string location, AzureSku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string state = default(string), string provisioningState = default(string), string uri = default(string), string dataIngestionUri = default(string), IList trustedExternalTenants = default(IList))
: base(location, id, name, type, tags)
{
- Etag = etag;
Sku = sku;
State = state;
ProvisioningState = provisioningState;
@@ -75,12 +73,6 @@ public Cluster()
///
partial void CustomInit();
- ///
- /// Gets an ETag of the resource created.
- ///
- [JsonProperty(PropertyName = "etag")]
- public string Etag { get; private set; }
-
///
/// Gets or sets the SKU of the cluster.
///
@@ -90,7 +82,7 @@ public Cluster()
///
/// Gets the state of the resource. Possible values include:
/// 'Creating', 'Unavailable', 'Running', 'Deleting', 'Deleted',
- /// 'Stopping', 'Stopped', 'Starting'
+ /// 'Stopping', 'Stopped', 'Starting', 'Updating'
///
[JsonProperty(PropertyName = "properties.state")]
public string State { get; private set; }
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/ClusterCheckNameRequest.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/ClusterCheckNameRequest.cs
index 45f2bc7fec39..6fe52870b981 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/ClusterCheckNameRequest.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/ClusterCheckNameRequest.cs
@@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// The result returned from a cluster check name availability request.
+ ///
public partial class ClusterCheckNameRequest
{
///
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/ClusterUpdate.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/ClusterUpdate.cs
index 02919d436970..bcaa2be83970 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/ClusterUpdate.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/ClusterUpdate.cs
@@ -42,11 +42,10 @@ public ClusterUpdate()
/// Microsoft.Storage/storageAccounts.
/// Resource tags.
/// Resource location.
- /// An ETag of the resource updated.
/// The SKU of the cluster.
/// The state of the resource. Possible values
/// include: 'Creating', 'Unavailable', 'Running', 'Deleting',
- /// 'Deleted', 'Stopping', 'Stopped', 'Starting'
+ /// 'Deleted', 'Stopping', 'Stopped', 'Starting', 'Updating'
/// The provisioned state of the
/// resource. Possible values include: 'Running', 'Creating',
/// 'Deleting', 'Succeeded', 'Failed'
@@ -55,12 +54,11 @@ public ClusterUpdate()
/// URI.
/// The cluster's external
/// tenants.
- public ClusterUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string location = default(string), string etag = default(string), AzureSku sku = default(AzureSku), string state = default(string), string provisioningState = default(string), string uri = default(string), string dataIngestionUri = default(string), IList trustedExternalTenants = default(IList))
+ public ClusterUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string location = default(string), AzureSku sku = default(AzureSku), string state = default(string), string provisioningState = default(string), string uri = default(string), string dataIngestionUri = default(string), IList trustedExternalTenants = default(IList))
: base(id, name, type)
{
Tags = tags;
Location = location;
- Etag = etag;
Sku = sku;
State = state;
ProvisioningState = provisioningState;
@@ -87,12 +85,6 @@ public ClusterUpdate()
[JsonProperty(PropertyName = "location")]
public string Location { get; set; }
- ///
- /// Gets an ETag of the resource updated.
- ///
- [JsonProperty(PropertyName = "etag")]
- public string Etag { get; private set; }
-
///
/// Gets or sets the SKU of the cluster.
///
@@ -102,7 +94,7 @@ public ClusterUpdate()
///
/// Gets the state of the resource. Possible values include:
/// 'Creating', 'Unavailable', 'Running', 'Deleting', 'Deleted',
- /// 'Stopping', 'Stopped', 'Starting'
+ /// 'Stopping', 'Stopped', 'Starting', 'Updating'
///
[JsonProperty(PropertyName = "properties.state")]
public string State { get; private set; }
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DataFormat.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DataFormat.cs
index e55ab72aac5c..a66684be09f2 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DataFormat.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DataFormat.cs
@@ -19,5 +19,13 @@ public static class DataFormat
public const string MULTIJSON = "MULTIJSON";
public const string JSON = "JSON";
public const string CSV = "CSV";
+ public const string TSV = "TSV";
+ public const string SCSV = "SCSV";
+ public const string SOHSV = "SOHSV";
+ public const string PSV = "PSV";
+ public const string TXT = "TXT";
+ public const string RAW = "RAW";
+ public const string SINGLEJSON = "SINGLEJSON";
+ public const string AVRO = "AVRO";
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/Database.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/Database.cs
index 6d38eda060c0..d6868160de58 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/Database.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/Database.cs
@@ -13,15 +13,13 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Microsoft.Rest;
using Microsoft.Rest.Serialization;
using Newtonsoft.Json;
- using System.Collections;
- using System.Collections.Generic;
using System.Linq;
///
/// Class representing a Kusto database.
///
[Rest.Serialization.JsonTransformation]
- public partial class Database : TrackedResource
+ public partial class Database : ProxyResource
{
///
/// Initializes a new instance of the Database class.
@@ -34,31 +32,28 @@ public Database()
///
/// Initializes a new instance of the Database class.
///
- /// The geo-location where the resource
- /// lives
- /// The number of days data should
- /// be kept before it stops being accessible to queries.
/// Fully qualified resource Id for the resource. Ex -
/// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
/// The name of the resource
/// The type of the resource. Ex-
/// Microsoft.Compute/virtualMachines or
/// Microsoft.Storage/storageAccounts.
- /// Resource tags.
- /// An ETag of the resource created.
+ /// Resource location.
/// The provisioned state of the
/// resource. Possible values include: 'Running', 'Creating',
/// 'Deleting', 'Succeeded', 'Failed'
- /// The number of days of data that
- /// should be kept in cache for fast queries.
+ /// The time the data should be kept
+ /// before it stops being accessible to queries in TimeSpan.
+ /// The time the data that should be kept
+ /// in cache for fast queries in TimeSpan.
/// The statistics of the database.
- public Database(string location, int softDeletePeriodInDays, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string etag = default(string), string provisioningState = default(string), int? hotCachePeriodInDays = default(int?), DatabaseStatistics statistics = default(DatabaseStatistics))
- : base(location, id, name, type, tags)
+ public Database(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string provisioningState = default(string), System.TimeSpan? softDeletePeriod = default(System.TimeSpan?), System.TimeSpan? hotCachePeriod = default(System.TimeSpan?), DatabaseStatistics statistics = default(DatabaseStatistics))
+ : base(id, name, type)
{
- Etag = etag;
+ Location = location;
ProvisioningState = provisioningState;
- SoftDeletePeriodInDays = softDeletePeriodInDays;
- HotCachePeriodInDays = hotCachePeriodInDays;
+ SoftDeletePeriod = softDeletePeriod;
+ HotCachePeriod = hotCachePeriod;
Statistics = statistics;
CustomInit();
}
@@ -69,10 +64,10 @@ public Database()
partial void CustomInit();
///
- /// Gets an ETag of the resource created.
+ /// Gets or sets resource location.
///
- [JsonProperty(PropertyName = "etag")]
- public string Etag { get; private set; }
+ [JsonProperty(PropertyName = "location")]
+ public string Location { get; set; }
///
/// Gets the provisioned state of the resource. Possible values
@@ -82,18 +77,18 @@ public Database()
public string ProvisioningState { get; private set; }
///
- /// Gets or sets the number of days data should be kept before it stops
- /// being accessible to queries.
+ /// Gets or sets the time the data should be kept before it stops being
+ /// accessible to queries in TimeSpan.
///
- [JsonProperty(PropertyName = "properties.softDeletePeriodInDays")]
- public int SoftDeletePeriodInDays { get; set; }
+ [JsonProperty(PropertyName = "properties.softDeletePeriod")]
+ public System.TimeSpan? SoftDeletePeriod { get; set; }
///
- /// Gets or sets the number of days of data that should be kept in
- /// cache for fast queries.
+ /// Gets or sets the time the data that should be kept in cache for
+ /// fast queries in TimeSpan.
///
- [JsonProperty(PropertyName = "properties.hotCachePeriodInDays")]
- public int? HotCachePeriodInDays { get; set; }
+ [JsonProperty(PropertyName = "properties.hotCachePeriod")]
+ public System.TimeSpan? HotCachePeriod { get; set; }
///
/// Gets or sets the statistics of the database.
@@ -101,15 +96,5 @@ public Database()
[JsonProperty(PropertyName = "properties.statistics")]
public DatabaseStatistics Statistics { get; set; }
- ///
- /// Validate the object.
- ///
- ///
- /// Thrown if validation fails
- ///
- public override void Validate()
- {
- base.Validate();
- }
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseCheckNameRequest.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseCheckNameRequest.cs
index 934f974adaf7..a57f60514941 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseCheckNameRequest.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseCheckNameRequest.cs
@@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// The result returned from a database check name availability request.
+ ///
public partial class DatabaseCheckNameRequest
{
///
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabasePrincipal.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabasePrincipal.cs
index e41de5cce344..d05ea8c0954a 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabasePrincipal.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabasePrincipal.cs
@@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// A class representing database principal entity.
+ ///
public partial class DatabasePrincipal
{
///
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseStatistics.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseStatistics.cs
index 8587b124fc18..b0ff7463fe96 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseStatistics.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseStatistics.cs
@@ -13,6 +13,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// A class that contains database statistics information.
+ ///
public partial class DatabaseStatistics
{
///
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseUpdate.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseUpdate.cs
index 082636188fcc..85d45b91f057 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseUpdate.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/DatabaseUpdate.cs
@@ -32,8 +32,6 @@ public DatabaseUpdate()
///
/// Initializes a new instance of the DatabaseUpdate class.
///
- /// The number of days data should
- /// be kept before it stops being accessible to queries.
/// Fully qualified resource Id for the resource. Ex -
/// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
/// The name of the resource
@@ -41,21 +39,21 @@ public DatabaseUpdate()
/// Microsoft.Compute/virtualMachines or
/// Microsoft.Storage/storageAccounts.
/// Resource location.
- /// An ETag of the resource updated.
/// The provisioned state of the
/// resource. Possible values include: 'Running', 'Creating',
/// 'Deleting', 'Succeeded', 'Failed'
- /// The number of days of data that
- /// should be kept in cache for fast queries.
+ /// The time the data should be kept
+ /// before it stops being accessible to queries in TimeSpan.
+ /// The time the data that should be kept
+ /// in cache for fast queries in TimeSpan.
/// The statistics of the database.
- public DatabaseUpdate(int softDeletePeriodInDays, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string etag = default(string), string provisioningState = default(string), int? hotCachePeriodInDays = default(int?), DatabaseStatistics statistics = default(DatabaseStatistics))
+ public DatabaseUpdate(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string provisioningState = default(string), System.TimeSpan? softDeletePeriod = default(System.TimeSpan?), System.TimeSpan? hotCachePeriod = default(System.TimeSpan?), DatabaseStatistics statistics = default(DatabaseStatistics))
: base(id, name, type)
{
Location = location;
- Etag = etag;
ProvisioningState = provisioningState;
- SoftDeletePeriodInDays = softDeletePeriodInDays;
- HotCachePeriodInDays = hotCachePeriodInDays;
+ SoftDeletePeriod = softDeletePeriod;
+ HotCachePeriod = hotCachePeriod;
Statistics = statistics;
CustomInit();
}
@@ -71,12 +69,6 @@ public DatabaseUpdate()
[JsonProperty(PropertyName = "location")]
public string Location { get; set; }
- ///
- /// Gets an ETag of the resource updated.
- ///
- [JsonProperty(PropertyName = "etag")]
- public string Etag { get; private set; }
-
///
/// Gets the provisioned state of the resource. Possible values
/// include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed'
@@ -85,18 +77,18 @@ public DatabaseUpdate()
public string ProvisioningState { get; private set; }
///
- /// Gets or sets the number of days data should be kept before it stops
- /// being accessible to queries.
+ /// Gets or sets the time the data should be kept before it stops being
+ /// accessible to queries in TimeSpan.
///
- [JsonProperty(PropertyName = "properties.softDeletePeriodInDays")]
- public int SoftDeletePeriodInDays { get; set; }
+ [JsonProperty(PropertyName = "properties.softDeletePeriod")]
+ public System.TimeSpan? SoftDeletePeriod { get; set; }
///
- /// Gets or sets the number of days of data that should be kept in
- /// cache for fast queries.
+ /// Gets or sets the time the data that should be kept in cache for
+ /// fast queries in TimeSpan.
///
- [JsonProperty(PropertyName = "properties.hotCachePeriodInDays")]
- public int? HotCachePeriodInDays { get; set; }
+ [JsonProperty(PropertyName = "properties.hotCachePeriod")]
+ public System.TimeSpan? HotCachePeriod { get; set; }
///
/// Gets or sets the statistics of the database.
@@ -104,14 +96,5 @@ public DatabaseUpdate()
[JsonProperty(PropertyName = "properties.statistics")]
public DatabaseStatistics Statistics { get; set; }
- ///
- /// Validate the object.
- ///
- ///
- /// Thrown if validation fails
- ///
- public virtual void Validate()
- {
- }
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidation.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidation.cs
deleted file mode 100644
index ad1978beeaa2..000000000000
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidation.cs
+++ /dev/null
@@ -1,126 +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.
-// Changes may cause incorrect behavior and will be lost if the code is
-// regenerated.
-//
-
-namespace Microsoft.Azure.Management.Kusto.Models
-{
- using Microsoft.Rest;
- using Microsoft.Rest.Serialization;
- using Newtonsoft.Json;
- using System.Linq;
-
- ///
- /// Class representing an event hub connection validation.
- ///
- [Rest.Serialization.JsonTransformation]
- public partial class EventHubConnectionValidation
- {
- ///
- /// Initializes a new instance of the EventHubConnectionValidation
- /// class.
- ///
- public EventHubConnectionValidation()
- {
- CustomInit();
- }
-
- ///
- /// Initializes a new instance of the EventHubConnectionValidation
- /// class.
- ///
- /// The resource ID of the event hub
- /// to be used to create a data connection.
- /// The event hub consumer group.
- /// The name of the event hub
- /// connection.
- /// The table where the data should be
- /// ingested. Optionally the table information can be added to each
- /// message.
- /// The mapping rule to be used to ingest
- /// the data. Optionally the mapping information can be added to each
- /// message.
- /// The data format of the message. Optionally
- /// the data format can be added to each message. Possible values
- /// include: 'MULTIJSON', 'JSON', 'CSV'
- public EventHubConnectionValidation(string eventHubResourceId, string consumerGroup, string eventhubConnectionName = default(string), string tableName = default(string), string mappingRuleName = default(string), string dataFormat = default(string))
- {
- EventhubConnectionName = eventhubConnectionName;
- EventHubResourceId = eventHubResourceId;
- ConsumerGroup = consumerGroup;
- TableName = tableName;
- MappingRuleName = mappingRuleName;
- DataFormat = dataFormat;
- CustomInit();
- }
-
- ///
- /// An initialization method that performs custom operations like setting defaults
- ///
- partial void CustomInit();
-
- ///
- /// Gets or sets the name of the event hub connection.
- ///
- [JsonProperty(PropertyName = "eventhubConnectionName")]
- public string EventhubConnectionName { get; set; }
-
- ///
- /// Gets or sets the resource ID of the event hub to be used to create
- /// a data connection.
- ///
- [JsonProperty(PropertyName = "properties.eventHubResourceId")]
- public string EventHubResourceId { get; set; }
-
- ///
- /// Gets or sets the event hub consumer group.
- ///
- [JsonProperty(PropertyName = "properties.consumerGroup")]
- public string ConsumerGroup { get; set; }
-
- ///
- /// Gets or sets the table where the data should be ingested.
- /// Optionally the table information can be added to each message.
- ///
- [JsonProperty(PropertyName = "properties.tableName")]
- public string TableName { get; set; }
-
- ///
- /// Gets or sets the mapping rule to be used to ingest the data.
- /// Optionally the mapping information can be added to each message.
- ///
- [JsonProperty(PropertyName = "properties.mappingRuleName")]
- public string MappingRuleName { get; set; }
-
- ///
- /// Gets or sets the data format of the message. Optionally the data
- /// format can be added to each message. Possible values include:
- /// 'MULTIJSON', 'JSON', 'CSV'
- ///
- [JsonProperty(PropertyName = "properties.dataFormat")]
- public string DataFormat { get; set; }
-
- ///
- /// Validate the object.
- ///
- ///
- /// Thrown if validation fails
- ///
- public virtual void Validate()
- {
- if (EventHubResourceId == null)
- {
- throw new ValidationException(ValidationRules.CannotBeNull, "EventHubResourceId");
- }
- if (ConsumerGroup == null)
- {
- throw new ValidationException(ValidationRules.CannotBeNull, "ConsumerGroup");
- }
- }
- }
-}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/State.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/State.cs
index 4980d0ba06d9..8f4111a556a5 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/State.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/State.cs
@@ -24,5 +24,6 @@ public static class State
public const string Stopping = "Stopping";
public const string Stopped = "Stopped";
public const string Starting = "Starting";
+ public const string Updating = "Updating";
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/TrustedExternalTenant.cs b/src/SDKs/Kusto/Management.Kusto/Generated/Models/TrustedExternalTenant.cs
index c9f9fe00071d..96cfc4cc9c5b 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/TrustedExternalTenant.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/Models/TrustedExternalTenant.cs
@@ -13,6 +13,9 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// Represents a tenant ID that is trusted by the cluster.
+ ///
public partial class TrustedExternalTenant
{
///
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/SdkInfo_KustoManagementClient.cs b/src/SDKs/Kusto/Management.Kusto/Generated/SdkInfo_KustoManagementClient.cs
index 34146da70e20..64564a2cf83b 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/SdkInfo_KustoManagementClient.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Generated/SdkInfo_KustoManagementClient.cs
@@ -19,20 +19,20 @@ public static IEnumerable> ApiInfo_KustoManagement
{
return new Tuple[]
{
- new Tuple("Kusto", "Clusters", "2018-09-07-preview"),
- new Tuple("Kusto", "Databases", "2018-09-07-preview"),
- new Tuple("Kusto", "EventHubConnections", "2018-09-07-preview"),
- new Tuple("Kusto", "Operations", "2018-09-07-preview"),
+ new Tuple("Kusto", "Clusters", "2019-01-21"),
+ new Tuple("Kusto", "DataConnections", "2019-01-21"),
+ new Tuple("Kusto", "Databases", "2019-01-21"),
+ new Tuple("Kusto", "Operations", "2019-01-21"),
}.AsEnumerable();
}
}
// BEGIN: Code Generation Metadata Section
public static readonly String AutoRestVersion = "latest";
public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283";
- public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/Kusto/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\\Git\\Clients\\azure-sdk-for-net\\src\\SDKs";
+ public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/azure-kusto/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\\Git\\Clients\\azure-sdk-for-net\\src\\SDKs";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "ab9c6ff77b4f15ee7880c8f860c7e96f8356e80d";
+ public static readonly String GithubCommidId = "db5576ab45c5dfebe743a528495612bc1e2a26fe";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
diff --git a/src/SDKs/Kusto/Management.Kusto/Microsoft.Azure.Management.Kusto.csproj b/src/SDKs/Kusto/Management.Kusto/Microsoft.Azure.Management.Kusto.csproj
index 6220093b489a..73b92c0b1e73 100644
--- a/src/SDKs/Kusto/Management.Kusto/Microsoft.Azure.Management.Kusto.csproj
+++ b/src/SDKs/Kusto/Management.Kusto/Microsoft.Azure.Management.Kusto.csproj
@@ -5,12 +5,12 @@
Microsoft.Azure.Management.Kusto
- 0.9.1-preview
+ 1.0.0
Microsoft.Azure.Management.Kusto
management;kusto;;;
diff --git a/src/SDKs/Kusto/Management.Kusto/Properties/AssemblyInfo.cs b/src/SDKs/Kusto/Management.Kusto/Properties/AssemblyInfo.cs
index 327162ddb8e0..ce7a707a3863 100644
--- a/src/SDKs/Kusto/Management.Kusto/Properties/AssemblyInfo.cs
+++ b/src/SDKs/Kusto/Management.Kusto/Properties/AssemblyInfo.cs
@@ -7,8 +7,8 @@
[assembly: AssemblyTitle("Microsoft Azure Kusto Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Kusto Resources.")]
-[assembly: AssemblyVersion("0.9.0.0")]
-[assembly: AssemblyFileVersion("0.9.0.0")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]
diff --git a/src/SDKs/Kusto/Management.Kusto/generate.ps1 b/src/SDKs/Kusto/Management.Kusto/generate.ps1
index c2ddcd6a97aa..bc98f228bc7e 100644
--- a/src/SDKs/Kusto/Management.Kusto/generate.ps1
+++ b/src/SDKs/Kusto/Management.Kusto/generate.ps1
@@ -1 +1 @@
-Start-AutoRestCodeGeneration -ResourceProvider "Kusto/resource-manager" -AutoRestVersion "latest"
+Start-AutoRestCodeGeneration -ResourceProvider "azure-kusto/resource-manager" -AutoRestVersion "latest"
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/EventHubConnectionsOperations.cs b/src/SDKs/Kusto/Management.Kusto/generated/DataConnectionsOperations.cs
similarity index 88%
rename from src/SDKs/Kusto/Management.Kusto/Generated/EventHubConnectionsOperations.cs
rename to src/SDKs/Kusto/Management.Kusto/generated/DataConnectionsOperations.cs
index d952e5f581a7..1c90cb030ac5 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/EventHubConnectionsOperations.cs
+++ b/src/SDKs/Kusto/Management.Kusto/generated/DataConnectionsOperations.cs
@@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.Kusto
using System.Threading.Tasks;
///
- /// EventHubConnectionsOperations operations.
+ /// DataConnectionsOperations operations.
///
- internal partial class EventHubConnectionsOperations : IServiceOperations, IEventHubConnectionsOperations
+ internal partial class DataConnectionsOperations : IServiceOperations, IDataConnectionsOperations
{
///
- /// Initializes a new instance of the EventHubConnectionsOperations class.
+ /// Initializes a new instance of the DataConnectionsOperations class.
///
///
/// Reference to the service client.
@@ -36,7 +36,7 @@ internal partial class EventHubConnectionsOperations : IServiceOperations
/// Thrown when a required parameter is null
///
- internal EventHubConnectionsOperations(KustoManagementClient client)
+ internal DataConnectionsOperations(KustoManagementClient client)
{
if (client == null)
{
@@ -51,7 +51,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
public KustoManagementClient Client { get; private set; }
///
- /// Returns the list of Event Hub connections of the given Kusto database.
+ /// Returns the list of data connections of the given Kusto database.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -83,7 +83,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (resourceGroupName == null)
{
@@ -120,7 +120,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/eventhubconnections").ToString();
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnections").ToString();
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName));
_url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
@@ -223,7 +223,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse>();
+ var _result = new AzureOperationResponse>();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -236,7 +236,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -256,7 +256,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
}
///
- /// Checks that the Event Hub data connection parameters are valid.
+ /// Checks that the data connection parameters are valid.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -268,8 +268,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
/// The name of the database in the Kusto cluster.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
///
/// Headers that will be added to request.
@@ -292,7 +291,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> EventhubConnectionValidationWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, EventHubConnectionValidation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> DataConnectionValidationMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, DataConnectionValidation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (resourceGroupName == null)
{
@@ -318,10 +317,6 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
}
- if (parameters != null)
- {
- parameters.Validate();
- }
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -334,11 +329,11 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
tracingParameters.Add("databaseName", databaseName);
tracingParameters.Add("parameters", parameters);
tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "EventhubConnectionValidation", tracingParameters);
+ ServiceClientTracing.Enter(_invocationId, this, "DataConnectionValidationMethod", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/eventhubConnectionValidation").ToString();
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnectionValidation").ToString();
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName));
_url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
@@ -447,7 +442,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse();
+ var _result = new AzureOperationResponse();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -460,7 +455,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -480,7 +475,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
}
///
- /// Returns an Event Hub connection.
+ /// Returns a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -491,8 +486,8 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// Headers that will be added to request.
@@ -515,7 +510,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (resourceGroupName == null)
{
@@ -529,9 +524,9 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "databaseName");
}
- if (eventHubConnectionName == null)
+ if (dataConnectionName == null)
{
- throw new ValidationException(ValidationRules.CannotBeNull, "eventHubConnectionName");
+ throw new ValidationException(ValidationRules.CannotBeNull, "dataConnectionName");
}
if (Client.SubscriptionId == null)
{
@@ -551,17 +546,17 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("clusterName", clusterName);
tracingParameters.Add("databaseName", databaseName);
- tracingParameters.Add("eventHubConnectionName", eventHubConnectionName);
+ tracingParameters.Add("dataConnectionName", dataConnectionName);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/eventhubconnections/{eventHubConnectionName}").ToString();
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnections/{dataConnectionName}").ToString();
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName));
_url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
- _url = _url.Replace("{eventHubConnectionName}", System.Uri.EscapeDataString(eventHubConnectionName));
+ _url = _url.Replace("{dataConnectionName}", System.Uri.EscapeDataString(dataConnectionName));
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
List _queryParameters = new List();
if (Client.ApiVersion != null)
@@ -661,7 +656,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse();
+ var _result = new AzureOperationResponse();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -674,7 +669,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -694,7 +689,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
}
///
- /// Creates or updates a Event Hub connection.
+ /// Creates or updates a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -705,12 +700,11 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
///
/// The headers that will be added to request.
@@ -718,15 +712,15 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The cancellation token.
///
- public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
// Send Request
- AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters, customHeaders, cancellationToken).ConfigureAwait(false);
+ AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters, customHeaders, cancellationToken).ConfigureAwait(false);
return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false);
}
///
- /// Updates a Event Hub connection.
+ /// Updates a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -737,11 +731,11 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the Update operation.
+ /// The data connection parameters supplied to the Update operation.
///
///
/// The headers that will be added to request.
@@ -749,15 +743,15 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The cancellation token.
///
- public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnectionUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
// Send Request
- AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters, customHeaders, cancellationToken).ConfigureAwait(false);
+ AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters, customHeaders, cancellationToken).ConfigureAwait(false);
return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false);
}
///
- /// Deletes the Event Hub connection with the given name.
+ /// Deletes the data connection with the given name.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -768,8 +762,8 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// The headers that will be added to request.
@@ -777,15 +771,15 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The cancellation token.
///
- public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
// Send request
- AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, customHeaders, cancellationToken).ConfigureAwait(false);
+ AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, customHeaders, cancellationToken).ConfigureAwait(false);
return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false);
}
///
- /// Creates or updates a Event Hub connection.
+ /// Creates or updates a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -796,12 +790,11 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
///
/// Headers that will be added to request.
@@ -824,7 +817,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (resourceGroupName == null)
{
@@ -838,18 +831,14 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "databaseName");
}
- if (eventHubConnectionName == null)
+ if (dataConnectionName == null)
{
- throw new ValidationException(ValidationRules.CannotBeNull, "eventHubConnectionName");
+ throw new ValidationException(ValidationRules.CannotBeNull, "dataConnectionName");
}
if (parameters == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "parameters");
}
- if (parameters != null)
- {
- parameters.Validate();
- }
if (Client.SubscriptionId == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
@@ -868,18 +857,18 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("clusterName", clusterName);
tracingParameters.Add("databaseName", databaseName);
- tracingParameters.Add("eventHubConnectionName", eventHubConnectionName);
+ tracingParameters.Add("dataConnectionName", dataConnectionName);
tracingParameters.Add("parameters", parameters);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/eventhubconnections/{eventHubConnectionName}").ToString();
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnections/{dataConnectionName}").ToString();
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName));
_url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
- _url = _url.Replace("{eventHubConnectionName}", System.Uri.EscapeDataString(eventHubConnectionName));
+ _url = _url.Replace("{dataConnectionName}", System.Uri.EscapeDataString(dataConnectionName));
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
List _queryParameters = new List();
if (Client.ApiVersion != null)
@@ -985,7 +974,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse();
+ var _result = new AzureOperationResponse();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -998,7 +987,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -1016,7 +1005,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -1036,7 +1025,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
}
///
- /// Updates a Event Hub connection.
+ /// Updates a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -1047,11 +1036,11 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the Update operation.
+ /// The data connection parameters supplied to the Update operation.
///
///
/// Headers that will be added to request.
@@ -1074,7 +1063,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnectionUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (resourceGroupName == null)
{
@@ -1088,9 +1077,9 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "databaseName");
}
- if (eventHubConnectionName == null)
+ if (dataConnectionName == null)
{
- throw new ValidationException(ValidationRules.CannotBeNull, "eventHubConnectionName");
+ throw new ValidationException(ValidationRules.CannotBeNull, "dataConnectionName");
}
if (parameters == null)
{
@@ -1114,18 +1103,18 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("clusterName", clusterName);
tracingParameters.Add("databaseName", databaseName);
- tracingParameters.Add("eventHubConnectionName", eventHubConnectionName);
+ tracingParameters.Add("dataConnectionName", dataConnectionName);
tracingParameters.Add("parameters", parameters);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/eventhubconnections/{eventHubConnectionName}").ToString();
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnections/{dataConnectionName}").ToString();
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName));
_url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
- _url = _url.Replace("{eventHubConnectionName}", System.Uri.EscapeDataString(eventHubConnectionName));
+ _url = _url.Replace("{dataConnectionName}", System.Uri.EscapeDataString(dataConnectionName));
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
List _queryParameters = new List();
if (Client.ApiVersion != null)
@@ -1231,7 +1220,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
throw ex;
}
// Create Result
- var _result = new AzureOperationResponse();
+ var _result = new AzureOperationResponse();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
if (_httpResponse.Headers.Contains("x-ms-request-id"))
@@ -1244,7 +1233,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -1262,7 +1251,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
- _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
+ _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
@@ -1282,7 +1271,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
}
///
- /// Deletes the Event Hub connection with the given name.
+ /// Deletes the data connection with the given name.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -1293,8 +1282,8 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// Headers that will be added to request.
@@ -1314,7 +1303,7 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (resourceGroupName == null)
{
@@ -1328,9 +1317,9 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "databaseName");
}
- if (eventHubConnectionName == null)
+ if (dataConnectionName == null)
{
- throw new ValidationException(ValidationRules.CannotBeNull, "eventHubConnectionName");
+ throw new ValidationException(ValidationRules.CannotBeNull, "dataConnectionName");
}
if (Client.SubscriptionId == null)
{
@@ -1350,17 +1339,17 @@ internal EventHubConnectionsOperations(KustoManagementClient client)
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("clusterName", clusterName);
tracingParameters.Add("databaseName", databaseName);
- tracingParameters.Add("eventHubConnectionName", eventHubConnectionName);
+ tracingParameters.Add("dataConnectionName", dataConnectionName);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
- var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/eventhubconnections/{eventHubConnectionName}").ToString();
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/dataConnections/{dataConnectionName}").ToString();
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName));
_url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName));
- _url = _url.Replace("{eventHubConnectionName}", System.Uri.EscapeDataString(eventHubConnectionName));
+ _url = _url.Replace("{dataConnectionName}", System.Uri.EscapeDataString(dataConnectionName));
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
List _queryParameters = new List();
if (Client.ApiVersion != null)
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/EventHubConnectionsOperationsExtensions.cs b/src/SDKs/Kusto/Management.Kusto/generated/DataConnectionsOperationsExtensions.cs
similarity index 62%
rename from src/SDKs/Kusto/Management.Kusto/Generated/EventHubConnectionsOperationsExtensions.cs
rename to src/SDKs/Kusto/Management.Kusto/generated/DataConnectionsOperationsExtensions.cs
index df442a2704f3..72f858ff690a 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/EventHubConnectionsOperationsExtensions.cs
+++ b/src/SDKs/Kusto/Management.Kusto/generated/DataConnectionsOperationsExtensions.cs
@@ -19,12 +19,12 @@ namespace Microsoft.Azure.Management.Kusto
using System.Threading.Tasks;
///
- /// Extension methods for EventHubConnectionsOperations.
+ /// Extension methods for DataConnectionsOperations.
///
- public static partial class EventHubConnectionsOperationsExtensions
+ public static partial class DataConnectionsOperationsExtensions
{
///
- /// Returns the list of Event Hub connections of the given Kusto database.
+ /// Returns the list of data connections of the given Kusto database.
///
///
/// The operations group for this extension method.
@@ -38,13 +38,13 @@ public static partial class EventHubConnectionsOperationsExtensions
///
/// The name of the database in the Kusto cluster.
///
- public static IEnumerable ListByDatabase(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName)
+ public static IEnumerable ListByDatabase(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName)
{
return operations.ListByDatabaseAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult();
}
///
- /// Returns the list of Event Hub connections of the given Kusto database.
+ /// Returns the list of data connections of the given Kusto database.
///
///
/// The operations group for this extension method.
@@ -61,7 +61,7 @@ public static IEnumerable ListByDatabase(this IEventHubConne
///
/// The cancellation token.
///
- public static async Task> ListByDatabaseAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task> ListByDatabaseAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.ListByDatabaseWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false))
{
@@ -70,7 +70,7 @@ public static IEnumerable ListByDatabase(this IEventHubConne
}
///
- /// Checks that the Event Hub data connection parameters are valid.
+ /// Checks that the data connection parameters are valid.
///
///
/// The operations group for this extension method.
@@ -85,16 +85,15 @@ public static IEnumerable ListByDatabase(this IEventHubConne
/// The name of the database in the Kusto cluster.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
- public static EventHubConnectionValidationListResult EventhubConnectionValidation(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, EventHubConnectionValidation parameters)
+ public static DataConnectionValidationListResult DataConnectionValidationMethod(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, DataConnectionValidation parameters)
{
- return operations.EventhubConnectionValidationAsync(resourceGroupName, clusterName, databaseName, parameters).GetAwaiter().GetResult();
+ return operations.DataConnectionValidationMethodAsync(resourceGroupName, clusterName, databaseName, parameters).GetAwaiter().GetResult();
}
///
- /// Checks that the Event Hub data connection parameters are valid.
+ /// Checks that the data connection parameters are valid.
///
///
/// The operations group for this extension method.
@@ -109,22 +108,21 @@ public static EventHubConnectionValidationListResult EventhubConnectionValidatio
/// The name of the database in the Kusto cluster.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
///
/// The cancellation token.
///
- public static async Task EventhubConnectionValidationAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, EventHubConnectionValidation parameters, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task DataConnectionValidationMethodAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, DataConnectionValidation parameters, CancellationToken cancellationToken = default(CancellationToken))
{
- using (var _result = await operations.EventhubConnectionValidationWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false))
+ using (var _result = await operations.DataConnectionValidationMethodWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
///
- /// Returns an Event Hub connection.
+ /// Returns a data connection.
///
///
/// The operations group for this extension method.
@@ -138,16 +136,16 @@ public static EventHubConnectionValidationListResult EventhubConnectionValidatio
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
- public static EventHubConnection Get(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName)
+ public static DataConnection Get(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName)
{
- return operations.GetAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName).GetAwaiter().GetResult();
+ return operations.GetAsync(resourceGroupName, clusterName, databaseName, dataConnectionName).GetAwaiter().GetResult();
}
///
- /// Returns an Event Hub connection.
+ /// Returns a data connection.
///
///
/// The operations group for this extension method.
@@ -161,22 +159,22 @@ public static EventHubConnection Get(this IEventHubConnectionsOperations operati
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// The cancellation token.
///
- public static async Task GetAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task GetAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, CancellationToken cancellationToken = default(CancellationToken))
{
- using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, null, cancellationToken).ConfigureAwait(false))
+ using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
///
- /// Creates or updates a Event Hub connection.
+ /// Creates or updates a data connection.
///
///
/// The operations group for this extension method.
@@ -190,20 +188,19 @@ public static EventHubConnection Get(this IEventHubConnectionsOperations operati
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
- public static EventHubConnection CreateOrUpdate(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnection parameters)
+ public static DataConnection CreateOrUpdate(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters)
{
- return operations.CreateOrUpdateAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters).GetAwaiter().GetResult();
+ return operations.CreateOrUpdateAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters).GetAwaiter().GetResult();
}
///
- /// Creates or updates a Event Hub connection.
+ /// Creates or updates a data connection.
///
///
/// The operations group for this extension method.
@@ -217,26 +214,25 @@ public static EventHubConnection CreateOrUpdate(this IEventHubConnectionsOperati
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
///
/// The cancellation token.
///
- public static async Task CreateOrUpdateAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnection parameters, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task CreateOrUpdateAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, CancellationToken cancellationToken = default(CancellationToken))
{
- using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters, null, cancellationToken).ConfigureAwait(false))
+ using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
///
- /// Updates a Event Hub connection.
+ /// Updates a data connection.
///
///
/// The operations group for this extension method.
@@ -250,19 +246,19 @@ public static EventHubConnection CreateOrUpdate(this IEventHubConnectionsOperati
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the Update operation.
+ /// The data connection parameters supplied to the Update operation.
///
- public static EventHubConnection Update(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnectionUpdate parameters)
+ public static DataConnection Update(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters)
{
- return operations.UpdateAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters).GetAwaiter().GetResult();
+ return operations.UpdateAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters).GetAwaiter().GetResult();
}
///
- /// Updates a Event Hub connection.
+ /// Updates a data connection.
///
///
/// The operations group for this extension method.
@@ -276,25 +272,25 @@ public static EventHubConnection Update(this IEventHubConnectionsOperations oper
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the Update operation.
+ /// The data connection parameters supplied to the Update operation.
///
///
/// The cancellation token.
///
- public static async Task UpdateAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnectionUpdate parameters, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task UpdateAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, CancellationToken cancellationToken = default(CancellationToken))
{
- using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters, null, cancellationToken).ConfigureAwait(false))
+ using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
///
- /// Deletes the Event Hub connection with the given name.
+ /// Deletes the data connection with the given name.
///
///
/// The operations group for this extension method.
@@ -308,16 +304,16 @@ public static EventHubConnection Update(this IEventHubConnectionsOperations oper
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
- public static void Delete(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName)
+ public static void Delete(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName)
{
- operations.DeleteAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName).GetAwaiter().GetResult();
+ operations.DeleteAsync(resourceGroupName, clusterName, databaseName, dataConnectionName).GetAwaiter().GetResult();
}
///
- /// Deletes the Event Hub connection with the given name.
+ /// Deletes the data connection with the given name.
///
///
/// The operations group for this extension method.
@@ -331,19 +327,19 @@ public static void Delete(this IEventHubConnectionsOperations operations, string
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// The cancellation token.
///
- public static async Task DeleteAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task DeleteAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, CancellationToken cancellationToken = default(CancellationToken))
{
- (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, null, cancellationToken).ConfigureAwait(false)).Dispose();
}
///
- /// Creates or updates a Event Hub connection.
+ /// Creates or updates a data connection.
///
///
/// The operations group for this extension method.
@@ -357,20 +353,19 @@ public static void Delete(this IEventHubConnectionsOperations operations, string
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
- public static EventHubConnection BeginCreateOrUpdate(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnection parameters)
+ public static DataConnection BeginCreateOrUpdate(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters)
{
- return operations.BeginCreateOrUpdateAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters).GetAwaiter().GetResult();
+ return operations.BeginCreateOrUpdateAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters).GetAwaiter().GetResult();
}
///
- /// Creates or updates a Event Hub connection.
+ /// Creates or updates a data connection.
///
///
/// The operations group for this extension method.
@@ -384,26 +379,25 @@ public static EventHubConnection BeginCreateOrUpdate(this IEventHubConnectionsOp
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
- /// operation.
+ /// The data connection parameters supplied to the CreateOrUpdate operation.
///
///
/// The cancellation token.
///
- public static async Task BeginCreateOrUpdateAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnection parameters, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task BeginCreateOrUpdateAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, CancellationToken cancellationToken = default(CancellationToken))
{
- using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters, null, cancellationToken).ConfigureAwait(false))
+ using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
///
- /// Updates a Event Hub connection.
+ /// Updates a data connection.
///
///
/// The operations group for this extension method.
@@ -417,19 +411,19 @@ public static EventHubConnection BeginCreateOrUpdate(this IEventHubConnectionsOp
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the Update operation.
+ /// The data connection parameters supplied to the Update operation.
///
- public static EventHubConnection BeginUpdate(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnectionUpdate parameters)
+ public static DataConnection BeginUpdate(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters)
{
- return operations.BeginUpdateAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters).GetAwaiter().GetResult();
+ return operations.BeginUpdateAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters).GetAwaiter().GetResult();
}
///
- /// Updates a Event Hub connection.
+ /// Updates a data connection.
///
///
/// The operations group for this extension method.
@@ -443,25 +437,25 @@ public static EventHubConnection BeginUpdate(this IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the Update operation.
+ /// The data connection parameters supplied to the Update operation.
///
///
/// The cancellation token.
///
- public static async Task BeginUpdateAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnectionUpdate parameters, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task BeginUpdateAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, CancellationToken cancellationToken = default(CancellationToken))
{
- using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, parameters, null, cancellationToken).ConfigureAwait(false))
+ using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, parameters, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
///
- /// Deletes the Event Hub connection with the given name.
+ /// Deletes the data connection with the given name.
///
///
/// The operations group for this extension method.
@@ -475,16 +469,16 @@ public static EventHubConnection BeginUpdate(this IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
- public static void BeginDelete(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName)
+ public static void BeginDelete(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName)
{
- operations.BeginDeleteAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName).GetAwaiter().GetResult();
+ operations.BeginDeleteAsync(resourceGroupName, clusterName, databaseName, dataConnectionName).GetAwaiter().GetResult();
}
///
- /// Deletes the Event Hub connection with the given name.
+ /// Deletes the data connection with the given name.
///
///
/// The operations group for this extension method.
@@ -498,15 +492,15 @@ public static void BeginDelete(this IEventHubConnectionsOperations operations, s
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// The cancellation token.
///
- public static async Task BeginDeleteAsync(this IEventHubConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task BeginDeleteAsync(this IDataConnectionsOperations operations, string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, CancellationToken cancellationToken = default(CancellationToken))
{
- (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, eventHubConnectionName, null, cancellationToken).ConfigureAwait(false)).Dispose();
+ (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, dataConnectionName, null, cancellationToken).ConfigureAwait(false)).Dispose();
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/IEventHubConnectionsOperations.cs b/src/SDKs/Kusto/Management.Kusto/generated/IDataConnectionsOperations.cs
similarity index 71%
rename from src/SDKs/Kusto/Management.Kusto/Generated/IEventHubConnectionsOperations.cs
rename to src/SDKs/Kusto/Management.Kusto/generated/IDataConnectionsOperations.cs
index c435f3e12da7..a6ef876fdb3f 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/IEventHubConnectionsOperations.cs
+++ b/src/SDKs/Kusto/Management.Kusto/generated/IDataConnectionsOperations.cs
@@ -19,13 +19,12 @@ namespace Microsoft.Azure.Management.Kusto
using System.Threading.Tasks;
///
- /// EventHubConnectionsOperations operations.
+ /// DataConnectionsOperations operations.
///
- public partial interface IEventHubConnectionsOperations
+ public partial interface IDataConnectionsOperations
{
///
- /// Returns the list of Event Hub connections of the given Kusto
- /// database.
+ /// Returns the list of data connections of the given Kusto database.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -51,9 +50,9 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
- /// Checks that the Event Hub data connection parameters are valid.
+ /// Checks that the data connection parameters are valid.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -65,7 +64,7 @@ public partial interface IEventHubConnectionsOperations
/// The name of the database in the Kusto cluster.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
+ /// The data connection parameters supplied to the CreateOrUpdate
/// operation.
///
///
@@ -83,9 +82,9 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task> EventhubConnectionValidationWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, EventHubConnectionValidation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task> DataConnectionValidationMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, DataConnectionValidation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
- /// Returns an Event Hub connection.
+ /// Returns a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -96,8 +95,8 @@ public partial interface IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// The headers that will be added to request.
@@ -114,9 +113,9 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
- /// Creates or updates a Event Hub connection.
+ /// Creates or updates a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -127,11 +126,11 @@ public partial interface IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
+ /// The data connection parameters supplied to the CreateOrUpdate
/// operation.
///
///
@@ -149,9 +148,9 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
- /// Updates a Event Hub connection.
+ /// Updates a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -162,12 +161,11 @@ public partial interface IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the Update
- /// operation.
+ /// The data connection parameters supplied to the Update operation.
///
///
/// The headers that will be added to request.
@@ -184,9 +182,9 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnectionUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
- /// Deletes the Event Hub connection with the given name.
+ /// Deletes the data connection with the given name.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -197,8 +195,8 @@ public partial interface IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// The headers that will be added to request.
@@ -212,9 +210,9 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
- /// Creates or updates a Event Hub connection.
+ /// Creates or updates a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -225,11 +223,11 @@ public partial interface IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the CreateOrUpdate
+ /// The data connection parameters supplied to the CreateOrUpdate
/// operation.
///
///
@@ -247,9 +245,9 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
- /// Updates a Event Hub connection.
+ /// Updates a data connection.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -260,12 +258,11 @@ public partial interface IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
- /// The Event Hub connection parameters supplied to the Update
- /// operation.
+ /// The data connection parameters supplied to the Update operation.
///
///
/// The headers that will be added to request.
@@ -282,9 +279,9 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, EventHubConnectionUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, DataConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
- /// Deletes the Event Hub connection with the given name.
+ /// Deletes the data connection with the given name.
///
///
/// The name of the resource group containing the Kusto cluster.
@@ -295,8 +292,8 @@ public partial interface IEventHubConnectionsOperations
///
/// The name of the database in the Kusto cluster.
///
- ///
- /// The name of the event hub connection.
+ ///
+ /// The name of the data connection.
///
///
/// The headers that will be added to request.
@@ -310,6 +307,6 @@ public partial interface IEventHubConnectionsOperations
///
/// Thrown when a required parameter is null
///
- Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string eventHubConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string dataConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnection.cs b/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnection.cs
new file mode 100644
index 000000000000..63ac4813ab7d
--- /dev/null
+++ b/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnection.cs
@@ -0,0 +1,58 @@
+//
+// 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.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Kusto.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Class representing an data connection.
+ ///
+ public partial class DataConnection : ProxyResource
+ {
+ ///
+ /// Initializes a new instance of the DataConnection class.
+ ///
+ public DataConnection()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the DataConnection class.
+ ///
+ /// Fully qualified resource Id for the resource. Ex -
+ /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
+ /// The name of the resource
+ /// The type of the resource. Ex-
+ /// Microsoft.Compute/virtualMachines or
+ /// Microsoft.Storage/storageAccounts.
+ /// Resource location.
+ public DataConnection(string id = default(string), string name = default(string), string type = default(string), string location = default(string))
+ : base(id, name, type)
+ {
+ Location = location;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets resource location.
+ ///
+ [JsonProperty(PropertyName = "location")]
+ public string Location { get; set; }
+
+ }
+}
diff --git a/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidation.cs b/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidation.cs
new file mode 100644
index 000000000000..8489435eee36
--- /dev/null
+++ b/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidation.cs
@@ -0,0 +1,61 @@
+//
+// 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.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Kusto.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Class representing an data connection validation.
+ ///
+ public partial class DataConnectionValidation
+ {
+ ///
+ /// Initializes a new instance of the DataConnectionValidation class.
+ ///
+ public DataConnectionValidation()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the DataConnectionValidation class.
+ ///
+ /// The name of the data
+ /// connection.
+ /// The data connection properties to
+ /// validate.
+ public DataConnectionValidation(string dataConnectionName = default(string), DataConnection properties = default(DataConnection))
+ {
+ DataConnectionName = dataConnectionName;
+ Properties = properties;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the name of the data connection.
+ ///
+ [JsonProperty(PropertyName = "dataConnectionName")]
+ public string DataConnectionName { get; set; }
+
+ ///
+ /// Gets or sets the data connection properties to validate.
+ ///
+ [JsonProperty(PropertyName = "properties")]
+ public DataConnection Properties { get; set; }
+
+ }
+}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidationListResult.cs b/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidationListResult.cs
similarity index 60%
rename from src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidationListResult.cs
rename to src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidationListResult.cs
index 02e2c243ea6d..9f0ab6225d20 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidationListResult.cs
+++ b/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidationListResult.cs
@@ -16,26 +16,26 @@ namespace Microsoft.Azure.Management.Kusto.Models
using System.Linq;
///
- /// The list Kusto event hub connection validation result.
+ /// The list Kusto data connection validation result.
///
- public partial class EventHubConnectionValidationListResult
+ public partial class DataConnectionValidationListResult
{
///
/// Initializes a new instance of the
- /// EventHubConnectionValidationListResult class.
+ /// DataConnectionValidationListResult class.
///
- public EventHubConnectionValidationListResult()
+ public DataConnectionValidationListResult()
{
CustomInit();
}
///
/// Initializes a new instance of the
- /// EventHubConnectionValidationListResult class.
+ /// DataConnectionValidationListResult class.
///
- /// The list of Kusto event hub connection
- /// validation errors.
- public EventHubConnectionValidationListResult(IList value = default(IList))
+ /// The list of Kusto data connection validation
+ /// errors.
+ public DataConnectionValidationListResult(IList value = default(IList))
{
Value = value;
CustomInit();
@@ -47,11 +47,10 @@ public EventHubConnectionValidationListResult()
partial void CustomInit();
///
- /// Gets or sets the list of Kusto event hub connection validation
- /// errors.
+ /// Gets or sets the list of Kusto data connection validation errors.
///
[JsonProperty(PropertyName = "value")]
- public IList Value { get; set; }
+ public IList Value { get; set; }
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidationResult.cs b/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidationResult.cs
similarity index 66%
rename from src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidationResult.cs
rename to src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidationResult.cs
index f6ad26b2e290..d57f912d1cdb 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionValidationResult.cs
+++ b/src/SDKs/Kusto/Management.Kusto/generated/Models/DataConnectionValidationResult.cs
@@ -13,24 +13,27 @@ namespace Microsoft.Azure.Management.Kusto.Models
using Newtonsoft.Json;
using System.Linq;
- public partial class EventHubConnectionValidationResult
+ ///
+ /// The result returned from a data connection validation request.
+ ///
+ public partial class DataConnectionValidationResult
{
///
- /// Initializes a new instance of the
- /// EventHubConnectionValidationResult class.
+ /// Initializes a new instance of the DataConnectionValidationResult
+ /// class.
///
- public EventHubConnectionValidationResult()
+ public DataConnectionValidationResult()
{
CustomInit();
}
///
- /// Initializes a new instance of the
- /// EventHubConnectionValidationResult class.
+ /// Initializes a new instance of the DataConnectionValidationResult
+ /// class.
///
/// A message which indicates a problem in
- /// event hub connection validation.
- public EventHubConnectionValidationResult(string errorMessage = default(string))
+ /// data connection validation.
+ public DataConnectionValidationResult(string errorMessage = default(string))
{
ErrorMessage = errorMessage;
CustomInit();
@@ -42,8 +45,8 @@ public EventHubConnectionValidationResult()
partial void CustomInit();
///
- /// Gets or sets a message which indicates a problem in event hub
- /// connection validation.
+ /// Gets or sets a message which indicates a problem in data connection
+ /// validation.
///
[JsonProperty(PropertyName = "errorMessage")]
public string ErrorMessage { get; set; }
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionUpdate.cs b/src/SDKs/Kusto/Management.Kusto/generated/Models/EventGridDataConnection.cs
similarity index 66%
rename from src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionUpdate.cs
rename to src/SDKs/Kusto/Management.Kusto/generated/Models/EventGridDataConnection.cs
index b77449bd33f3..26c910fcb9ef 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnectionUpdate.cs
+++ b/src/SDKs/Kusto/Management.Kusto/generated/Models/EventGridDataConnection.cs
@@ -16,25 +16,35 @@ namespace Microsoft.Azure.Management.Kusto.Models
using System.Linq;
///
- /// Class representing an update to event hub connection.
+ /// Class representing an Event Grid data connection.
///
+ [Newtonsoft.Json.JsonObject("EventGrid")]
[Rest.Serialization.JsonTransformation]
- public partial class EventHubConnectionUpdate : ProxyResource
+ public partial class EventGridDataConnection : DataConnection
{
///
- /// Initializes a new instance of the EventHubConnectionUpdate class.
+ /// Initializes a new instance of the EventGridDataConnection class.
///
- public EventHubConnectionUpdate()
+ public EventGridDataConnection()
{
CustomInit();
}
///
- /// Initializes a new instance of the EventHubConnectionUpdate class.
+ /// Initializes a new instance of the EventGridDataConnection class.
///
- /// The resource ID of the event hub
- /// to be used to create a data connection.
+ /// The resource ID of the
+ /// storage account where the data resides.
+ /// The resource ID where the event
+ /// grid is configured to send events.
/// The event hub consumer group.
+ /// The table where the data should be
+ /// ingested. Optionally the table information can be added to each
+ /// message.
+ /// The data format of the message. Optionally
+ /// the data format can be added to each message. Possible values
+ /// include: 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV',
+ /// 'TXT', 'RAW', 'SINGLEJSON', 'AVRO'
/// Fully qualified resource Id for the resource. Ex -
/// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
/// The name of the resource
@@ -42,19 +52,13 @@ public EventHubConnectionUpdate()
/// Microsoft.Compute/virtualMachines or
/// Microsoft.Storage/storageAccounts.
/// Resource location.
- /// The table where the data should be
- /// ingested. Optionally the table information can be added to each
- /// message.
/// The mapping rule to be used to ingest
/// the data. Optionally the mapping information can be added to each
/// message.
- /// The data format of the message. Optionally
- /// the data format can be added to each message. Possible values
- /// include: 'MULTIJSON', 'JSON', 'CSV'
- public EventHubConnectionUpdate(string eventHubResourceId, string consumerGroup, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string tableName = default(string), string mappingRuleName = default(string), string dataFormat = default(string))
- : base(id, name, type)
+ public EventGridDataConnection(string storageAccountResourceId, string eventHubResourceId, string consumerGroup, string tableName, string dataFormat, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string mappingRuleName = default(string))
+ : base(id, name, type, location)
{
- Location = location;
+ StorageAccountResourceId = storageAccountResourceId;
EventHubResourceId = eventHubResourceId;
ConsumerGroup = consumerGroup;
TableName = tableName;
@@ -69,14 +73,15 @@ public EventHubConnectionUpdate()
partial void CustomInit();
///
- /// Gets or sets resource location.
+ /// Gets or sets the resource ID of the storage account where the data
+ /// resides.
///
- [JsonProperty(PropertyName = "location")]
- public string Location { get; set; }
+ [JsonProperty(PropertyName = "properties.storageAccountResourceId")]
+ public string StorageAccountResourceId { get; set; }
///
- /// Gets or sets the resource ID of the event hub to be used to create
- /// a data connection.
+ /// Gets or sets the resource ID where the event grid is configured to
+ /// send events.
///
[JsonProperty(PropertyName = "properties.eventHubResourceId")]
public string EventHubResourceId { get; set; }
@@ -104,7 +109,8 @@ public EventHubConnectionUpdate()
///
/// Gets or sets the data format of the message. Optionally the data
/// format can be added to each message. Possible values include:
- /// 'MULTIJSON', 'JSON', 'CSV'
+ /// 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT',
+ /// 'RAW', 'SINGLEJSON', 'AVRO'
///
[JsonProperty(PropertyName = "properties.dataFormat")]
public string DataFormat { get; set; }
@@ -117,6 +123,10 @@ public EventHubConnectionUpdate()
///
public virtual void Validate()
{
+ if (StorageAccountResourceId == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccountResourceId");
+ }
if (EventHubResourceId == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "EventHubResourceId");
@@ -125,6 +135,14 @@ public virtual void Validate()
{
throw new ValidationException(ValidationRules.CannotBeNull, "ConsumerGroup");
}
+ if (TableName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "TableName");
+ }
+ if (DataFormat == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "DataFormat");
+ }
}
}
}
diff --git a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnection.cs b/src/SDKs/Kusto/Management.Kusto/generated/Models/EventHubDataConnection.cs
similarity index 81%
rename from src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnection.cs
rename to src/SDKs/Kusto/Management.Kusto/generated/Models/EventHubDataConnection.cs
index 1f0c7de7ab4a..fa0fd044f87e 100644
--- a/src/SDKs/Kusto/Management.Kusto/Generated/Models/EventHubConnection.cs
+++ b/src/SDKs/Kusto/Management.Kusto/generated/Models/EventHubDataConnection.cs
@@ -16,21 +16,22 @@ namespace Microsoft.Azure.Management.Kusto.Models
using System.Linq;
///
- /// Class representing an event hub connection.
+ /// Class representing an event hub data connection.
///
+ [Newtonsoft.Json.JsonObject("EventHub")]
[Rest.Serialization.JsonTransformation]
- public partial class EventHubConnection : ProxyResource
+ public partial class EventHubDataConnection : DataConnection
{
///
- /// Initializes a new instance of the EventHubConnection class.
+ /// Initializes a new instance of the EventHubDataConnection class.
///
- public EventHubConnection()
+ public EventHubDataConnection()
{
CustomInit();
}
///
- /// Initializes a new instance of the EventHubConnection class.
+ /// Initializes a new instance of the EventHubDataConnection class.
///
/// The resource ID of the event hub
/// to be used to create a data connection.
@@ -50,11 +51,11 @@ public EventHubConnection()
/// message.
/// The data format of the message. Optionally
/// the data format can be added to each message. Possible values
- /// include: 'MULTIJSON', 'JSON', 'CSV'
- public EventHubConnection(string eventHubResourceId, string consumerGroup, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string tableName = default(string), string mappingRuleName = default(string), string dataFormat = default(string))
- : base(id, name, type)
+ /// include: 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV',
+ /// 'TXT', 'RAW', 'SINGLEJSON', 'AVRO'
+ public EventHubDataConnection(string eventHubResourceId, string consumerGroup, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string tableName = default(string), string mappingRuleName = default(string), string dataFormat = default(string))
+ : base(id, name, type, location)
{
- Location = location;
EventHubResourceId = eventHubResourceId;
ConsumerGroup = consumerGroup;
TableName = tableName;
@@ -68,12 +69,6 @@ public EventHubConnection()
///
partial void CustomInit();
- ///
- /// Gets or sets resource location.
- ///
- [JsonProperty(PropertyName = "location")]
- public string Location { get; set; }
-
///
/// Gets or sets the resource ID of the event hub to be used to create
/// a data connection.
@@ -104,7 +99,8 @@ public EventHubConnection()
///
/// Gets or sets the data format of the message. Optionally the data
/// format can be added to each message. Possible values include:
- /// 'MULTIJSON', 'JSON', 'CSV'
+ /// 'MULTIJSON', 'JSON', 'CSV', 'TSV', 'SCSV', 'SOHSV', 'PSV', 'TXT',
+ /// 'RAW', 'SINGLEJSON', 'AVRO'
///
[JsonProperty(PropertyName = "properties.dataFormat")]
public string DataFormat { get; set; }
diff --git a/src/SDKs/_metadata/Azure-Kusto_resource-manager.txt b/src/SDKs/_metadata/Azure-Kusto_resource-manager.txt
new file mode 100644
index 000000000000..92af596ece81
--- /dev/null
+++ b/src/SDKs/_metadata/Azure-Kusto_resource-manager.txt
@@ -0,0 +1,14 @@
+Installing AutoRest version: latest
+AutoRest installed successfully.
+Commencing code generation
+Generating CSharp code
+Executing AutoRest command
+cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/azure-kusto/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\Git\Clients\azure-sdk-for-net\src\SDKs
+2019-02-20 13:03:53 UTC
+Azure-rest-api-specs repository information
+GitHub fork: Azure
+Branch: master
+Commit: db5576ab45c5dfebe743a528495612bc1e2a26fe
+AutoRest information
+Requested version: latest
+Bootstrapper version: autorest@2.0.4283
diff --git a/src/SDKs/_metadata/Kusto_resource-manager.txt b/src/SDKs/_metadata/Kusto_resource-manager.txt
index fe1769a81156..be8636db91e8 100644
--- a/src/SDKs/_metadata/Kusto_resource-manager.txt
+++ b/src/SDKs/_metadata/Kusto_resource-manager.txt
@@ -4,11 +4,11 @@ Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/Kusto/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\Git\Clients\azure-sdk-for-net\src\SDKs
-2018-11-15 16:00:19 UTC
+2019-02-14 12:50:56 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
-Commit: ab9c6ff77b4f15ee7880c8f860c7e96f8356e80d
+Commit: 7ee35e59c1d951e5177d16b38b6e7daf771cdbf2
AutoRest information
Requested version: latest
Bootstrapper version: autorest@2.0.4283