diff --git a/src/Kusto/.gitattributes b/src/Kusto/.gitattributes new file mode 100644 index 000000000000..2125666142eb --- /dev/null +++ b/src/Kusto/.gitattributes @@ -0,0 +1 @@ +* text=auto \ No newline at end of file diff --git a/src/Kusto/.gitignore b/src/Kusto/.gitignore new file mode 100644 index 000000000000..e7954e8b91a8 --- /dev/null +++ b/src/Kusto/.gitignore @@ -0,0 +1,15 @@ +bin +obj +.vs +generated +internal +exports +tools +custom/*.psm1 +test/*-TestResults.xml +/*.ps1 +/*.ps1xml +/*.psm1 +/*.snk +/*.csproj +/*.nuspec diff --git a/src/Kusto/Az.Kusto.psd1 b/src/Kusto/Az.Kusto.psd1 new file mode 100644 index 000000000000..4627917f3798 --- /dev/null +++ b/src/Kusto/Az.Kusto.psd1 @@ -0,0 +1,24 @@ +@{ + GUID = '18c61846-f6f0-425e-ba4b-5cf903e2bdd8' + RootModule = './Az.Kusto.psm1' + ModuleVersion = '0.1.4' + CompatiblePSEditions = 'Core', 'Desktop' + Author = 'Microsoft Corporation' + CompanyName = 'Microsoft Corporation' + Copyright = 'Microsoft Corporation. All rights reserved.' + Description = 'Microsoft Azure PowerShell: Kusto cmdlets' + PowerShellVersion = '5.1' + DotNetFrameworkVersion = '4.7.2' + RequiredAssemblies = './bin/Az.Kusto.private.dll' + FormatsToProcess = './Az.Kusto.format.ps1xml' + FunctionsToExport = 'Add-AzKustoClusterLanguageExtension', 'Add-AzKustoDatabasePrincipal', 'Get-AzKustoAttachedDatabaseConfiguration', 'Get-AzKustoCluster', 'Get-AzKustoClusterFollowerDatabase', 'Get-AzKustoClusterLanguageExtension', 'Get-AzKustoClusterPrincipalAssignment', 'Get-AzKustoClusterSku', 'Get-AzKustoDatabase', 'Get-AzKustoDatabasePrincipal', 'Get-AzKustoDatabasePrincipalAssignment', 'Get-AzKustoDataConnection', 'Invoke-AzKustoDataConnectionValidation', 'Invoke-AzKustoDetachClusterFollowerDatabase', 'Invoke-AzKustoDiagnoseClusterVirtualNetwork', 'New-AzKustoAttachedDatabaseConfiguration', 'New-AzKustoCluster', 'New-AzKustoClusterPrincipalAssignment', 'New-AzKustoDatabase', 'New-AzKustoDatabasePrincipalAssignment', 'New-AzKustoDataConnection', 'Remove-AzKustoAttachedDatabaseConfiguration', 'Remove-AzKustoCluster', 'Remove-AzKustoClusterLanguageExtension', 'Remove-AzKustoClusterPrincipalAssignment', 'Remove-AzKustoDatabase', 'Remove-AzKustoDatabasePrincipal', 'Remove-AzKustoDatabasePrincipalAssignment', 'Remove-AzKustoDataConnection', 'Start-AzKustoCluster', 'Stop-AzKustoCluster', 'Test-AzKustoClusterNameAvailability', 'Test-AzKustoClusterPrincipalAssignmentNameAvailability', 'Test-AzKustoDatabaseNameAvailability', 'Test-AzKustoDatabasePrincipalAssignmentNameAvailability', 'Test-AzKustoDataConnectionNameAvailability', 'Update-AzKustoCluster', 'Update-AzKustoDatabase', 'Update-AzKustoDataConnection', '*' + AliasesToExport = '*' + PrivateData = @{ + PSData = @{ + Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'Kusto' + LicenseUri = 'https://aka.ms/azps-license' + ProjectUri = 'https://github.com/Azure/azure-powershell' + ReleaseNotes = '' + } + } +} diff --git a/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 b/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 index 313a97423358..cc560f78fac6 100644 --- a/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 +++ b/src/Kusto/custom/Invoke-AzKustoDataConnectionValidation.ps1 @@ -19,8 +19,8 @@ Checks that the data connection parameters are valid. .Description Checks that the data connection parameters are valid. .Example -PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection -Property @{Location=$location; Kind=$kind; EventHubResourceId=$eventHubResourceId; DataFormat=$dataFormat; ConsumerGroup='$Default'; Compression= "None"; TableName = $tableName; MappingRuleName = $tableMappingName} -PS C:\> $dataConnectionValidation = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidation -Property @{DataConnectionName=$dataConnectionName; Property=$dataConnectionProperties} +PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection -Property @{Location=$location; Kind=$kind; EventHubResourceId=$eventHubResourceId; DataFormat=$dataFormat; ConsumerGroup='$Default'; Compression= "None"; TableName = $tableName; MappingRuleName = $tableMappingName} +PS C:\> $dataConnectionValidation = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidation -Property @{DataConnectionName=$dataConnectionName; Property=$dataConnectionProperties} PS C:\> Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Parameter $dataConnectionValidation ErrorMessage @@ -31,7 +31,7 @@ event hub resource id and consumer group tuple provided are already used https://docs.microsoft.com/en-us/powershell/module/az.kusto/invoke-azkustodataconnectionvalidation #> function Invoke-AzKustoDataConnectionValidation { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult])] [CmdletBinding(DefaultParameterSetName = 'DataExpandedEventHub', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'DataExpandedEventHub', Mandatory)] @@ -105,12 +105,21 @@ function Invoke-AzKustoDataConnectionValidation { # The event/iot hub consumer group. ${ConsumerGroup}, - [Parameter(ParameterSetName = 'DataExpandedEventHub')] - [Parameter(ParameterSetName = 'DataExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'DataExpandedIotHub')] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedEventHub')] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedIotHub')] + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType] + # The name of blob storage event type to process. + ${BlobStorageEventType}, + + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If set to true, indicates that ingestion should ignore the first record of every file. + ${IgnoreFirstRecord}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat] # The data format of the message. Optionally the data format can be added to each message. @@ -131,12 +140,7 @@ function Invoke-AzKustoDataConnectionValidation { # The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. ${MappingRuleName}, - [Parameter(ParameterSetName = 'DataExpandedEventHub')] - [Parameter(ParameterSetName = 'DataExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'DataExpandedIotHub')] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedEventHub')] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'DataViaIdentityExpandedIotHub')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.String] # The table where the data should be ingested. Optionally the table information can be added to each message. @@ -226,13 +230,13 @@ function Invoke-AzKustoDataConnectionValidation { process { try { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.DataConnectionValidation]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.DataConnectionValidation]::new() $Parameter.DataConnectionName = $PSBoundParameters['DataConnectionName'] $null = $PSBoundParameters.Remove('DataConnectionName') if ($PSBoundParameters['Kind'] -eq 'EventHub') { - $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection]::new() + $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection]::new() $Parameter.Property.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') @@ -248,16 +252,26 @@ function Invoke-AzKustoDataConnectionValidation { } } elseif ($PSBoundParameters['Kind'] -eq 'EventGrid') { - $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridDataConnection]::new() + $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridDataConnection]::new() $Parameter.Property.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') $Parameter.Property.StorageAccountResourceId = $PSBoundParameters['StorageAccountResourceId'] $null = $PSBoundParameters.Remove('StorageAccountResourceId') + + if ($PSBoundParameters.ContainsKey('BlobStorageEventType')) { + $Parameter.BlobStorageEventType = $PSBoundParameters['BlobStorageEventType'] + $null = $PSBoundParameters.Remove('BlobStorageEventType') + } + + if ($PSBoundParameters.ContainsKey('IgnoreFirstRecord')) { + $Parameter.IgnoreFirstRecord = $PSBoundParameters['IgnoreFirstRecord'] + $null = $PSBoundParameters.Remove('IgnoreFirstRecord') + } } else { - $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubDataConnection]::new() + $Parameter.Property = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubDataConnection]::new() $Parameter.Property.IotHubResourceId = $PSBoundParameters['IotHubResourceId'] $null = $PSBoundParameters.Remove('IotHubResourceId') diff --git a/src/Kusto/custom/New-AzKustoDataConnection.ps1 b/src/Kusto/custom/New-AzKustoDataConnection.ps1 index e4b2ed08cfb4..c52d4b31f4a9 100644 --- a/src/Kusto/custom/New-AzKustoDataConnection.ps1 +++ b/src/Kusto/custom/New-AzKustoDataConnection.ps1 @@ -19,7 +19,7 @@ Creates or updates a data connection. .Description Creates or updates a data connection. .Example -PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection -Property @{Location="East US"; Kind="EventHub"; EventHubResourceId="/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub"; DataFormat="JSON"; ConsumerGroup='$Default'; Compression= "None"; TableName = "Events"; MappingRuleName = "EventsMapping"} +PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection -Property @{Location="East US"; Kind="EventHub"; EventHubResourceId="/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub"; DataFormat="JSON"; ConsumerGroup='$Default'; Compression= "None"; TableName = "Events"; MappingRuleName = "EventsMapping"} PS C:\> New-AzKustoDataConnection -ResourceGroupName "testrg" -ClusterName "testnewkustocluster" -DatabaseName "mykustodatabase" -DataConnectionName "mykustodataconnection" -Parameter $dataConnectionProperties Kind Location Name Type @@ -30,7 +30,7 @@ EventHub East US testnewkustocluster/mykustodatabase/mykustodataconnection Micr https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustodataconnection #> function New-AzKustoDataConnection { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection])] [CmdletBinding(DefaultParameterSetName = 'CreateExpandedEventHub', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory)] @@ -86,9 +86,21 @@ function New-AzKustoDataConnection { # The event/iot hub consumer group. ${ConsumerGroup}, - [Parameter(ParameterSetName = 'CreateExpandedEventHub')] - [Parameter(ParameterSetName = 'CreateExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'CreateExpandedIotHub')] + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType] + # The name of blob storage event type to process. + ${BlobStorageEventType}, + + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If set to true, indicates that ingestion should ignore the first record of every file. + ${IgnoreFirstRecord}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat] # The data format of the message. Optionally the data format can be added to each message. @@ -107,9 +119,7 @@ function New-AzKustoDataConnection { # The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. ${MappingRuleName}, - [Parameter(ParameterSetName = 'CreateExpandedEventHub')] - [Parameter(ParameterSetName = 'CreateExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'CreateExpandedIotHub')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.String] # The table where the data should be ingested. Optionally the table information can be added to each message. @@ -208,7 +218,7 @@ function New-AzKustoDataConnection { process { try { if ($PSBoundParameters['Kind'] -eq 'EventHub') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection]::new() $Parameter.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') @@ -224,16 +234,26 @@ function New-AzKustoDataConnection { } } elseif ($PSBoundParameters['Kind'] -eq 'EventGrid') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridDataConnection]::new() $Parameter.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') $Parameter.StorageAccountResourceId = $PSBoundParameters['StorageAccountResourceId'] $null = $PSBoundParameters.Remove('StorageAccountResourceId') + + if ($PSBoundParameters.ContainsKey('BlobStorageEventType')) { + $Parameter.BlobStorageEventType = $PSBoundParameters['BlobStorageEventType'] + $null = $PSBoundParameters.Remove('BlobStorageEventType') + } + + if ($PSBoundParameters.ContainsKey('IgnoreFirstRecord')) { + $Parameter.IgnoreFirstRecord = $PSBoundParameters['IgnoreFirstRecord'] + $null = $PSBoundParameters.Remove('IgnoreFirstRecord') + } } else { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubDataConnection]::new() $Parameter.IotHubResourceId = $PSBoundParameters['IotHubResourceId'] $null = $PSBoundParameters.Remove('IotHubResourceId') diff --git a/src/Kusto/custom/New-AzKustoDatabase.ps1 b/src/Kusto/custom/New-AzKustoDatabase.ps1 index e1630d783718..6ddfbb02d91b 100644 --- a/src/Kusto/custom/New-AzKustoDatabase.ps1 +++ b/src/Kusto/custom/New-AzKustoDatabase.ps1 @@ -29,7 +29,7 @@ ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/ https://docs.microsoft.com/en-us/powershell/module/az.kusto/new-azkustodatabase #> function New-AzKustoDatabase { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase])] [CmdletBinding(PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory)] @@ -146,7 +146,7 @@ function New-AzKustoDatabase { process { try { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabase]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabase]::new() $Parameter.Kind = $PSBoundParameters['Kind'] $null = $PSBoundParameters.Remove('Kind') diff --git a/src/Kusto/custom/Update-AzKustoDataConnection.ps1 b/src/Kusto/custom/Update-AzKustoDataConnection.ps1 index 92a53fd6a579..06b3d9e19aad 100644 --- a/src/Kusto/custom/Update-AzKustoDataConnection.ps1 +++ b/src/Kusto/custom/Update-AzKustoDataConnection.ps1 @@ -19,7 +19,7 @@ Updates a data connection. .Description Updates a data connection. .Example -PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection -Property @{Location="East US"; Kind="EventHub"; EventHubResourceId="/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub"; DataFormat="JSON"; ConsumerGroup='$Default'; Compression= "None"; TableName = "Events"; MappingRuleName = "EventsMapping1"} +PS C:\> $dataConnectionProperties = New-Object -Type Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection -Property @{Location="East US"; Kind="EventHub"; EventHubResourceId="/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub"; DataFormat="JSON"; ConsumerGroup='$Default'; Compression= "None"; TableName = "Events"; MappingRuleName = "EventsMapping1"} PS C:\> Update-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName "testnewkustocluster" -DatabaseName "mykustodatabase" -DataConnectionName "mykustodataconnection" -Parameter $dataConnectionProperties Kind Location Name Type @@ -30,7 +30,7 @@ EventHub East US testnewkustocluster/mykustodatabase/mykustodataconnection Micr https://docs.microsoft.com/en-us/powershell/module/az.kusto/update-azkustodataconnection #> function Update-AzKustoDataConnection { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection])] [CmdletBinding(DefaultParameterSetName = 'UpdateExpandedEventHub', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'UpdateExpandedEventHub', Mandatory)] @@ -107,12 +107,21 @@ function Update-AzKustoDataConnection { # The event/iot hub consumer group. ${ConsumerGroup}, - [Parameter(ParameterSetName = 'UpdateExpandedEventHub')] - [Parameter(ParameterSetName = 'UpdateExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'UpdateExpandedIotHub')] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventHub')] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedIotHub')] + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType] + # The name of blob storage event type to process. + ${BlobStorageEventType}, + + [Parameter(ParameterSetName = 'UpdateExpandedEventGrid')] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid')] + [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] + [System.Management.Automation.SwitchParameter] + # If set to true, indicates that ingestion should ignore the first record of every file. + ${IgnoreFirstRecord}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat] # The data format of the message. Optionally the data format can be added to each message. @@ -133,12 +142,7 @@ function Update-AzKustoDataConnection { # The mapping rule to be used to ingest the data. Optionally the mapping information can be added to each message. ${MappingRuleName}, - [Parameter(ParameterSetName = 'UpdateExpandedEventHub')] - [Parameter(ParameterSetName = 'UpdateExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'UpdateExpandedIotHub')] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventHub')] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedEventGrid', Mandatory)] - [Parameter(ParameterSetName = 'UpdateViaIdentityExpandedIotHub')] + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Category('Body')] [System.String] # The table where the data should be ingested. Optionally the table information can be added to each message. @@ -241,7 +245,7 @@ function Update-AzKustoDataConnection { process { try { if ($PSBoundParameters['Kind'] -eq 'EventHub') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventHubDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventHubDataConnection]::new() $Parameter.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') @@ -257,16 +261,26 @@ function Update-AzKustoDataConnection { } } elseif ($PSBoundParameters['Kind'] -eq 'EventGrid') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.EventGridDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.EventGridDataConnection]::new() $Parameter.EventHubResourceId = $PSBoundParameters['EventHubResourceId'] $null = $PSBoundParameters.Remove('EventHubResourceId') $Parameter.StorageAccountResourceId = $PSBoundParameters['StorageAccountResourceId'] $null = $PSBoundParameters.Remove('StorageAccountResourceId') + + if ($PSBoundParameters.ContainsKey('BlobStorageEventType')) { + $Parameter.BlobStorageEventType = $PSBoundParameters['BlobStorageEventType'] + $null = $PSBoundParameters.Remove('BlobStorageEventType') + } + + if ($PSBoundParameters.ContainsKey('IgnoreFirstRecord')) { + $Parameter.IgnoreFirstRecord = $PSBoundParameters['IgnoreFirstRecord'] + $null = $PSBoundParameters.Remove('IgnoreFirstRecord') + } } else { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IotHubDataConnection]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IotHubDataConnection]::new() $Parameter.IotHubResourceId = $PSBoundParameters['IotHubResourceId'] $null = $PSBoundParameters.Remove('IotHubResourceId') diff --git a/src/Kusto/custom/Update-AzKustoDatabase.ps1 b/src/Kusto/custom/Update-AzKustoDatabase.ps1 index 97d748d8addd..8416027c3b22 100644 --- a/src/Kusto/custom/Update-AzKustoDatabase.ps1 +++ b/src/Kusto/custom/Update-AzKustoDatabase.ps1 @@ -31,7 +31,7 @@ ReadWrite East US testnewkustocluster/mykustodatabase Microsoft.Kusto/Clusters/ https://docs.microsoft.com/en-us/powershell/module/az.kusto/update-azkustodatabase #> function Update-AzKustoDatabase { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase])] [CmdletBinding(DefaultParameterSetName = 'UpdateExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory)] @@ -157,10 +157,10 @@ function Update-AzKustoDatabase { process { try { if ($PSBoundParameters['Kind'] -eq 'ReadWrite') { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadWriteDatabase]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadWriteDatabase]::new() } else { - $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ReadOnlyFollowingDatabase]::new() + $Parameter = [Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ReadOnlyFollowingDatabase]::new() } $Parameter.Kind = $PSBoundParameters['Kind'] diff --git a/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md index 934cc67434aa..95cfd03a1cb4 100644 --- a/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/docs/Add-AzKustoClusterLanguageExtension.md @@ -52,7 +52,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -68,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -101,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -117,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -133,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -149,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -166,7 +159,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Value @@ -174,7 +166,7 @@ The list of language extensions. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Parameter Sets: (All) Aliases: @@ -183,7 +175,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -199,7 +190,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -216,7 +206,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -230,14 +219,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. @@ -248,7 +238,7 @@ To create the parameters described below, construct a hash table containing the - `[ResourceGroupName ]`: The name of the resource group containing the Kusto cluster. - `[SubscriptionId ]`: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. -#### VALUE : The list of language extensions. +VALUE : The list of language extensions. - `[Name ]`: The language extension name. ## RELATED LINKS diff --git a/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md index 21227940cf14..232267a565a7 100644 --- a/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md +++ b/src/Kusto/docs/Add-AzKustoDatabasePrincipal.md @@ -57,7 +57,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -73,7 +72,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -89,7 +87,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -106,7 +103,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -122,7 +118,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -139,7 +134,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Value @@ -147,7 +141,7 @@ The list of Kusto database principals. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Parameter Sets: (All) Aliases: @@ -156,7 +150,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -172,7 +165,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -189,7 +181,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -201,16 +192,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. @@ -221,7 +213,7 @@ To create the parameters described below, construct a hash table containing the - `[ResourceGroupName ]`: The name of the resource group containing the Kusto cluster. - `[SubscriptionId ]`: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. -#### VALUE : The list of Kusto database principals. +VALUE : The list of Kusto database principals. - `Name `: Database principal name. - `Role `: Database principal role. - `Type `: Database principal type. diff --git a/src/Kusto/docs/Az.Kusto.md b/src/Kusto/docs/Az.Kusto.md index 7bd4547e54d2..000c178585c0 100644 --- a/src/Kusto/docs/Az.Kusto.md +++ b/src/Kusto/docs/Az.Kusto.md @@ -1,6 +1,6 @@ --- Module Name: Az.Kusto -Module Guid: 61681df7-6bcc-4fb4-893b-372a9e183654 +Module Guid: 18c61846-f6f0-425e-ba4b-5cf903e2bdd8 Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.kusto Help Version: 1.0.0.0 Locale: en-US diff --git a/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md index a9603db20aa8..5d2b3e5a725f 100644 --- a/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/docs/Get-AzKustoAttachedDatabaseConfiguration.md @@ -72,7 +72,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -88,7 +87,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -105,7 +103,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -121,7 +118,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -137,7 +133,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -154,7 +149,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -166,16 +160,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Get-AzKustoCluster.md b/src/Kusto/docs/Get-AzKustoCluster.md index ecc2e578eca5..04a30f36a33c 100644 --- a/src/Kusto/docs/Get-AzKustoCluster.md +++ b/src/Kusto/docs/Get-AzKustoCluster.md @@ -77,7 +77,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -94,7 +93,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -110,7 +108,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -126,7 +123,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -143,7 +139,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -155,16 +150,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md b/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md index 004398714be7..9d475ad9cd7b 100644 --- a/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md +++ b/src/Kusto/docs/Get-AzKustoClusterFollowerDatabase.md @@ -48,7 +48,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -64,7 +63,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -80,7 +78,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -97,7 +94,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -113,7 +109,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -130,7 +125,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -140,11 +134,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IFollowerDatabaseDefinition - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IFollowerDatabaseDefinition ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md index 8bbd4d4faad0..503e1b133c8a 100644 --- a/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/docs/Get-AzKustoClusterLanguageExtension.md @@ -49,7 +49,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -65,7 +64,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -81,7 +79,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -98,7 +95,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -114,7 +110,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -131,7 +126,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -141,11 +135,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md b/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md index 42f3143211f2..dded28267b57 100644 --- a/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/docs/Get-AzKustoClusterPrincipalAssignment.md @@ -72,7 +72,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -88,7 +87,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -105,7 +103,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalAssignmentName @@ -121,7 +118,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -137,7 +133,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -154,7 +149,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -166,16 +160,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Get-AzKustoClusterSku.md b/src/Kusto/docs/Get-AzKustoClusterSku.md index 0d8fc9f561ab..c38669c54f83 100644 --- a/src/Kusto/docs/Get-AzKustoClusterSku.md +++ b/src/Kusto/docs/Get-AzKustoClusterSku.md @@ -102,7 +102,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -118,7 +117,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -134,7 +132,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -151,7 +148,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -161,13 +157,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAzureResourceSku +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAzureResourceSku -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ISkuDescription - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ISkuDescription ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Get-AzKustoDataConnection.md b/src/Kusto/docs/Get-AzKustoDataConnection.md index 20312715a217..ce57da37d8e9 100644 --- a/src/Kusto/docs/Get-AzKustoDataConnection.md +++ b/src/Kusto/docs/Get-AzKustoDataConnection.md @@ -71,7 +71,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -87,7 +86,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -103,7 +101,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -120,7 +117,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -136,7 +132,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -152,7 +147,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -169,7 +163,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -181,16 +174,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Get-AzKustoDatabase.md b/src/Kusto/docs/Get-AzKustoDatabase.md index c3032f848f04..59680cbf76ba 100644 --- a/src/Kusto/docs/Get-AzKustoDatabase.md +++ b/src/Kusto/docs/Get-AzKustoDatabase.md @@ -72,7 +72,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -88,7 +87,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -105,7 +103,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -121,7 +118,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -137,7 +133,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -154,7 +149,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -166,16 +160,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md index 0c55a58b3a32..d747acab2370 100644 --- a/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md +++ b/src/Kusto/docs/Get-AzKustoDatabasePrincipal.md @@ -49,7 +49,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -65,7 +64,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -81,7 +79,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -97,7 +94,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -114,7 +110,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -130,7 +125,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -147,7 +141,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -157,11 +150,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md index 6474962c1b63..6dd8f6c9bc4b 100644 --- a/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/docs/Get-AzKustoDatabasePrincipalAssignment.md @@ -75,7 +75,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -91,7 +90,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -107,7 +105,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -124,7 +121,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalAssignmentName @@ -140,7 +136,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -156,7 +151,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -173,7 +167,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -185,16 +178,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md b/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md index e564a177b24e..495aa178e83a 100644 --- a/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md +++ b/src/Kusto/docs/Invoke-AzKustoDataConnectionValidation.md @@ -24,9 +24,9 @@ Invoke-AzKustoDataConnectionValidation -ClusterName -DatabaseName -DatabaseName - -ResourceGroupName -ConsumerGroup -DataConnectionName - -DataFormat -EventHubResourceId -Kind -Location - -StorageAccountResourceId -TableName [-SubscriptionId ] [-MappingRuleName ] + -ResourceGroupName -ConsumerGroup -DataConnectionName -EventHubResourceId + -Kind -Location -StorageAccountResourceId [-SubscriptionId ] + [-DataFormat ] [-MappingRuleName ] [-TableName ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` @@ -42,9 +42,9 @@ Invoke-AzKustoDataConnectionValidation -ClusterName -DatabaseName -ConsumerGroup - -DataConnectionName -DataFormat -EventHubResourceId -Kind - -Location -StorageAccountResourceId -TableName [-MappingRuleName ] - [-DefaultProfile ] [-Confirm] [-WhatIf] [] + -DataConnectionName -EventHubResourceId -Kind -Location + -StorageAccountResourceId [-DataFormat ] [-MappingRuleName ] + [-TableName ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` ### DataViaIdentityExpandedEventHub @@ -65,6 +65,22 @@ Invoke-AzKustoDataConnectionValidation -InputObject -ConsumerGr [] ``` +### UpdateExpandedEventGrid +``` +Invoke-AzKustoDataConnectionValidation -ConsumerGroup -DataConnectionName -Kind + -Location [-BlobStorageEventType ] [-DataFormat ] + [-IgnoreFirstRecord] [-MappingRuleName ] [-TableName ] [-DefaultProfile ] + [-Confirm] [-WhatIf] [] +``` + +### UpdateViaIdentityExpandedEventGrid +``` +Invoke-AzKustoDataConnectionValidation -ConsumerGroup -DataConnectionName -Kind + -Location [-BlobStorageEventType ] [-DataFormat ] + [-IgnoreFirstRecord] [-MappingRuleName ] [-TableName ] [-DefaultProfile ] + [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Checks that the data connection parameters are valid. @@ -141,6 +157,21 @@ The above command validates IotHub data connection named "myiothubdc" for the da ## PARAMETERS +### -BlobStorageEventType +The name of blob storage event type to process. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType +Parameter Sets: UpdateExpandedEventGrid, UpdateViaIdentityExpandedEventGrid +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ClusterName The name of the Kusto cluster. @@ -154,7 +185,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Compression @@ -170,7 +200,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ConsumerGroup @@ -186,7 +215,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -202,7 +230,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataConnectionName @@ -218,7 +245,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataFormat @@ -230,12 +256,11 @@ Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -251,7 +276,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventHubResourceId @@ -267,7 +291,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventSystemProperty @@ -283,7 +306,21 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False +``` + +### -IgnoreFirstRecord +If set to true, indicates that ingestion should ignore the first record of every file. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: UpdateExpandedEventGrid, UpdateViaIdentityExpandedEventGrid +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ``` ### -InputObject @@ -300,7 +337,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -IotHubResourceId @@ -316,7 +352,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Kind @@ -332,7 +367,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -348,7 +382,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -MappingRuleName @@ -365,7 +398,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -381,7 +413,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SharedAccessPolicyName @@ -397,7 +428,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -StorageAccountResourceId @@ -413,7 +443,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -430,7 +459,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TableName @@ -442,12 +470,11 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -463,7 +490,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -480,7 +506,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -492,16 +517,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnectionValidationResult - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnectionValidationResult ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md b/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md index 823987f395ef..fed8580ab711 100644 --- a/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md +++ b/src/Kusto/docs/Invoke-AzKustoDetachClusterFollowerDatabase.md @@ -54,7 +54,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -AttachedDatabaseConfigurationName @@ -70,7 +69,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -86,7 +84,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterResourceId @@ -102,7 +99,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -118,7 +114,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -135,7 +130,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -151,7 +145,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -167,7 +160,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -183,7 +175,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -200,7 +191,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -216,7 +206,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -233,7 +222,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -247,14 +235,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Invoke-AzKustoDiagnoseClusterVirtualNetwork.md b/src/Kusto/docs/Invoke-AzKustoDiagnoseClusterVirtualNetwork.md index bb77ad21350e..ecb53bb1aa37 100644 --- a/src/Kusto/docs/Invoke-AzKustoDiagnoseClusterVirtualNetwork.md +++ b/src/Kusto/docs/Invoke-AzKustoDiagnoseClusterVirtualNetwork.md @@ -53,7 +53,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -69,7 +68,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -85,7 +83,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -102,7 +99,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -118,7 +114,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -134,7 +129,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -151,7 +145,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -167,7 +160,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -184,7 +176,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -198,14 +189,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.String -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/New-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/docs/New-AzKustoAttachedDatabaseConfiguration.md index e82ccb2022ff..079cede163c7 100644 --- a/src/Kusto/docs/New-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/docs/New-AzKustoAttachedDatabaseConfiguration.md @@ -51,7 +51,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -67,7 +66,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterResourceId @@ -83,7 +81,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -99,7 +96,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultPrincipalsModificationKind @@ -115,7 +111,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -131,7 +126,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -147,7 +141,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -163,7 +156,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -179,7 +171,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -195,7 +186,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -212,7 +202,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -228,7 +217,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -245,7 +233,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -255,11 +242,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IAttachedDatabaseConfiguration - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IAttachedDatabaseConfiguration ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoCluster.md b/src/Kusto/docs/New-AzKustoCluster.md index 5d25ac4a24a8..8725fafd57ae 100644 --- a/src/Kusto/docs/New-AzKustoCluster.md +++ b/src/Kusto/docs/New-AzKustoCluster.md @@ -14,11 +14,12 @@ Create or update a Kusto cluster. ``` New-AzKustoCluster -Name -ResourceGroupName -Location -SkuName - -SkuTier [-SubscriptionId ] [-EnableDiskEncryption] [-EnablePurge] - [-EnableStreamingIngest] [-IdentityType ] [-IdentityUserAssignedIdentity ] - [-KeyVaultPropertyKeyName ] [-KeyVaultPropertyKeyVaultUri ] - [-KeyVaultPropertyKeyVersion ] [-LanguageExtensionValue ] - [-OptimizedAutoscaleIsEnabled] [-OptimizedAutoscaleMaximum ] [-OptimizedAutoscaleMinimum ] + -SkuTier [-SubscriptionId ] [-EnableDiskEncryption] [-EnableDoubleEncryption] + [-EnablePurge] [-EnableStreamingIngest] [-IdentityType ] + [-IdentityUserAssignedIdentity ] [-KeyVaultPropertyKeyName ] + [-KeyVaultPropertyKeyVaultUri ] [-KeyVaultPropertyKeyVersion ] + [-LanguageExtensionValue ] [-OptimizedAutoscaleIsEnabled] + [-OptimizedAutoscaleMaximum ] [-OptimizedAutoscaleMinimum ] [-OptimizedAutoscaleVersion ] [-SkuCapacity ] [-Tag ] [-TrustedExternalTenant ] [-VirtualNetworkConfigurationDataManagementPublicIPId ] @@ -57,7 +58,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -73,7 +73,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EnableDiskEncryption @@ -89,7 +88,21 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False +``` + +### -EnableDoubleEncryption +A boolean value that indicates if double encryption is enabled. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ``` ### -EnablePurge @@ -105,7 +118,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EnableStreamingIngest @@ -121,7 +133,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -IdentityType @@ -137,7 +148,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -IdentityUserAssignedIdentity @@ -154,7 +164,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -KeyVaultPropertyKeyName @@ -170,7 +179,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -KeyVaultPropertyKeyVaultUri @@ -186,7 +194,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -KeyVaultPropertyKeyVersion @@ -202,7 +209,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -LanguageExtensionValue @@ -210,7 +216,7 @@ The list of language extensions. To construct, see NOTES section for LANGUAGEEXTENSIONVALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Parameter Sets: (All) Aliases: @@ -219,7 +225,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -235,7 +240,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -251,7 +255,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -267,7 +270,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OptimizedAutoscaleIsEnabled @@ -283,7 +285,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OptimizedAutoscaleMaximum @@ -299,7 +300,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OptimizedAutoscaleMinimum @@ -315,7 +315,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OptimizedAutoscaleVersion @@ -331,7 +330,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -347,7 +345,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SkuCapacity @@ -363,7 +360,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SkuName @@ -379,7 +375,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SkuTier @@ -395,7 +390,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -412,7 +406,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Tag @@ -428,7 +421,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TrustedExternalTenant @@ -436,7 +428,7 @@ The cluster's external tenants. To construct, see NOTES section for TRUSTEDEXTERNALTENANT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] Parameter Sets: (All) Aliases: @@ -445,7 +437,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VirtualNetworkConfigurationDataManagementPublicIPId @@ -461,7 +452,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VirtualNetworkConfigurationEnginePublicIPId @@ -477,7 +467,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VirtualNetworkConfigurationSubnetId @@ -493,7 +482,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Zone @@ -509,7 +497,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -525,7 +512,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -542,7 +528,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -552,19 +537,20 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### LANGUAGEEXTENSIONVALUE : The list of language extensions. + +LANGUAGEEXTENSIONVALUE : The list of language extensions. - `[Name ]`: The language extension name. -#### TRUSTEDEXTERNALTENANT : The cluster's external tenants. +TRUSTEDEXTERNALTENANT : The cluster's external tenants. - `[Value ]`: GUID representing an external tenant. ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoClusterPrincipalAssignment.md b/src/Kusto/docs/New-AzKustoClusterPrincipalAssignment.md index 2e416a4b29be..2ebaeda6e9bb 100644 --- a/src/Kusto/docs/New-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/docs/New-AzKustoClusterPrincipalAssignment.md @@ -50,7 +50,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -66,7 +65,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -82,7 +80,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -98,7 +95,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalAssignmentName @@ -114,7 +110,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalId @@ -131,7 +126,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalType @@ -147,7 +141,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -163,7 +156,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Role @@ -179,7 +171,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -196,7 +187,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TenantId @@ -212,7 +202,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -228,7 +217,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -245,7 +233,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -255,11 +242,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IClusterPrincipalAssignment - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IClusterPrincipalAssignment ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoDataConnection.md b/src/Kusto/docs/New-AzKustoDataConnection.md index 9f83b755b93e..be4ac174c781 100644 --- a/src/Kusto/docs/New-AzKustoDataConnection.md +++ b/src/Kusto/docs/New-AzKustoDataConnection.md @@ -25,10 +25,10 @@ New-AzKustoDataConnection -ClusterName -DatabaseName -Name -DatabaseName -Name - -ResourceGroupName -ConsumerGroup -DataFormat - -EventHubResourceId -Kind -Location -StorageAccountResourceId - -TableName [-SubscriptionId ] [-MappingRuleName ] [-DefaultProfile ] - [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + -ResourceGroupName -ConsumerGroup -EventHubResourceId -Kind + -Location -StorageAccountResourceId [-SubscriptionId ] + [-DataFormat ] [-MappingRuleName ] [-TableName ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### CreateExpandedIotHub @@ -41,6 +41,24 @@ New-AzKustoDataConnection -ClusterName -DatabaseName -Name ] ``` +### UpdateExpandedEventGrid +``` +New-AzKustoDataConnection -ClusterName -DatabaseName -Name + -ResourceGroupName -ConsumerGroup -Kind -Location + [-SubscriptionId ] [-BlobStorageEventType ] [-DataFormat ] + [-IgnoreFirstRecord] [-MappingRuleName ] [-TableName ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaIdentityExpandedEventGrid +``` +New-AzKustoDataConnection -ClusterName -DatabaseName -Name + -ResourceGroupName -ConsumerGroup -Kind -Location + [-SubscriptionId ] [-BlobStorageEventType ] [-DataFormat ] + [-IgnoreFirstRecord] [-MappingRuleName ] [-TableName ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Creates or updates a data connection. @@ -94,7 +112,21 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False +``` + +### -BlobStorageEventType +The name of blob storage event type to process. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType +Parameter Sets: UpdateExpandedEventGrid, UpdateViaIdentityExpandedEventGrid +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ``` ### -ClusterName @@ -110,7 +142,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Compression @@ -126,7 +157,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ConsumerGroup @@ -142,7 +172,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -158,7 +187,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataFormat @@ -170,12 +198,11 @@ Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -191,7 +218,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventHubResourceId @@ -207,7 +233,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventSystemProperty @@ -223,7 +248,21 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False +``` + +### -IgnoreFirstRecord +If set to true, indicates that ingestion should ignore the first record of every file. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: UpdateExpandedEventGrid, UpdateViaIdentityExpandedEventGrid +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ``` ### -IotHubResourceId @@ -239,7 +278,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Kind @@ -255,7 +293,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -271,7 +308,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -MappingRuleName @@ -288,7 +324,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -304,7 +339,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -320,7 +354,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -336,7 +369,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SharedAccessPolicyName @@ -352,7 +384,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -StorageAccountResourceId @@ -368,7 +399,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -385,7 +415,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TableName @@ -397,12 +426,11 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -418,7 +446,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -435,7 +462,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -445,11 +471,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoDatabase.md b/src/Kusto/docs/New-AzKustoDatabase.md index e76ce97ac153..79186b83848e 100644 --- a/src/Kusto/docs/New-AzKustoDatabase.md +++ b/src/Kusto/docs/New-AzKustoDatabase.md @@ -49,7 +49,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -65,7 +64,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -81,7 +79,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -HotCachePeriod @@ -97,7 +94,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Kind @@ -113,7 +109,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -129,7 +124,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -145,7 +139,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -161,7 +154,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -177,7 +169,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SoftDeletePeriod @@ -193,7 +184,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -210,7 +200,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -226,7 +215,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -243,7 +231,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -253,11 +240,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md index 8f1f45b4a5a8..0b8c6a3bd87b 100644 --- a/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/docs/New-AzKustoDatabasePrincipalAssignment.md @@ -50,7 +50,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -66,7 +65,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -82,7 +80,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -98,7 +95,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -114,7 +110,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalAssignmentName @@ -130,7 +125,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalId @@ -147,7 +141,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalType @@ -163,7 +156,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -179,7 +171,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Role @@ -195,7 +186,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -212,7 +202,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TenantId @@ -228,7 +217,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -244,7 +232,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -261,7 +248,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -271,11 +257,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipalAssignment - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipalAssignment ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md b/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md index 7ad2d1eba16e..2fc17acea054 100644 --- a/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md +++ b/src/Kusto/docs/Remove-AzKustoAttachedDatabaseConfiguration.md @@ -52,7 +52,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -68,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -101,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -117,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -133,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -149,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -165,7 +158,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -182,7 +174,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -198,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -215,7 +205,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -229,14 +218,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Remove-AzKustoCluster.md b/src/Kusto/docs/Remove-AzKustoCluster.md index 01a2a3acf1dd..e79f1dd9f7b3 100644 --- a/src/Kusto/docs/Remove-AzKustoCluster.md +++ b/src/Kusto/docs/Remove-AzKustoCluster.md @@ -51,7 +51,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -67,7 +66,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -100,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -116,7 +112,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -132,7 +127,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -148,7 +142,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -165,7 +158,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -181,7 +173,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -198,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -212,14 +202,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md b/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md index cde366a568ae..4cb0adb0f375 100644 --- a/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md +++ b/src/Kusto/docs/Remove-AzKustoClusterLanguageExtension.md @@ -52,7 +52,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -68,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -101,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -117,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -133,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -149,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -166,7 +159,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Value @@ -174,7 +166,7 @@ The list of language extensions. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Parameter Sets: (All) Aliases: @@ -183,7 +175,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -199,7 +190,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -216,7 +206,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -230,14 +219,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. @@ -248,7 +238,7 @@ To create the parameters described below, construct a hash table containing the - `[ResourceGroupName ]`: The name of the resource group containing the Kusto cluster. - `[SubscriptionId ]`: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. -#### VALUE : The list of language extensions. +VALUE : The list of language extensions. - `[Name ]`: The language extension name. ## RELATED LINKS diff --git a/src/Kusto/docs/Remove-AzKustoClusterPrincipalAssignment.md b/src/Kusto/docs/Remove-AzKustoClusterPrincipalAssignment.md index 35b309369957..aa8256df90ac 100644 --- a/src/Kusto/docs/Remove-AzKustoClusterPrincipalAssignment.md +++ b/src/Kusto/docs/Remove-AzKustoClusterPrincipalAssignment.md @@ -52,7 +52,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -68,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -101,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -117,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -133,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalAssignmentName @@ -149,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -165,7 +158,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -182,7 +174,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -198,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -215,7 +205,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -229,14 +218,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Remove-AzKustoDataConnection.md b/src/Kusto/docs/Remove-AzKustoDataConnection.md index 5e29d0970641..ba502de125e9 100644 --- a/src/Kusto/docs/Remove-AzKustoDataConnection.md +++ b/src/Kusto/docs/Remove-AzKustoDataConnection.md @@ -52,7 +52,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -68,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -100,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -117,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -133,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -149,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -165,7 +158,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -181,7 +173,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -198,7 +189,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -214,7 +204,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -231,7 +220,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -245,14 +233,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Remove-AzKustoDatabase.md b/src/Kusto/docs/Remove-AzKustoDatabase.md index 28c9e95247aa..1a718781f327 100644 --- a/src/Kusto/docs/Remove-AzKustoDatabase.md +++ b/src/Kusto/docs/Remove-AzKustoDatabase.md @@ -52,7 +52,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -68,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -101,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -117,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -133,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -149,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -165,7 +158,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -182,7 +174,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -198,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -215,7 +205,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -229,14 +218,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md b/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md index 573e77eaf14d..b90398587138 100644 --- a/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md +++ b/src/Kusto/docs/Remove-AzKustoDatabasePrincipal.md @@ -56,7 +56,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -72,7 +71,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -88,7 +86,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -105,7 +102,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -121,7 +117,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -138,7 +133,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Value @@ -146,7 +140,7 @@ The list of Kusto database principals. To construct, see NOTES section for VALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal[] Parameter Sets: (All) Aliases: @@ -155,7 +149,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -171,7 +164,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -188,7 +180,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -200,16 +191,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabasePrincipal - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabasePrincipal ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. @@ -220,7 +212,7 @@ To create the parameters described below, construct a hash table containing the - `[ResourceGroupName ]`: The name of the resource group containing the Kusto cluster. - `[SubscriptionId ]`: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. -#### VALUE : The list of Kusto database principals. +VALUE : The list of Kusto database principals. - `Name `: Database principal name. - `Role `: Database principal role. - `Type `: Database principal type. diff --git a/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md b/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md index 658fa65665c4..e4c499517228 100644 --- a/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md +++ b/src/Kusto/docs/Remove-AzKustoDatabasePrincipalAssignment.md @@ -52,7 +52,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -68,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -100,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -117,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -133,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -149,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PrincipalAssignmentName @@ -165,7 +158,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -181,7 +173,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -198,7 +189,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -214,7 +204,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -231,7 +220,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -245,14 +233,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Start-AzKustoCluster.md b/src/Kusto/docs/Start-AzKustoCluster.md index 67dda8cf49df..69795ce7e2d5 100644 --- a/src/Kusto/docs/Start-AzKustoCluster.md +++ b/src/Kusto/docs/Start-AzKustoCluster.md @@ -51,7 +51,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -67,7 +66,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -100,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -116,7 +112,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -132,7 +127,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -148,7 +142,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -165,7 +158,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -181,7 +173,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -198,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -212,14 +202,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Stop-AzKustoCluster.md b/src/Kusto/docs/Stop-AzKustoCluster.md index 3de3da3772d7..ced90e65dc4c 100644 --- a/src/Kusto/docs/Stop-AzKustoCluster.md +++ b/src/Kusto/docs/Stop-AzKustoCluster.md @@ -51,7 +51,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -67,7 +66,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -84,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -100,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -116,7 +112,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -132,7 +127,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -148,7 +142,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -165,7 +158,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -181,7 +173,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -198,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -212,14 +202,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md b/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md index e4ddb90dc3d8..560922bd05de 100644 --- a/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoClusterNameAvailability.md @@ -66,7 +66,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -83,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -99,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -115,7 +112,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -132,7 +128,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -148,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -164,7 +158,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -181,7 +174,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -193,16 +185,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md b/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md index dea510141f18..e5e55d44e878 100644 --- a/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoClusterPrincipalAssignmentNameAvailability.md @@ -67,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -83,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -100,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -116,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -132,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -149,7 +144,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -165,7 +159,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -181,7 +174,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -198,7 +190,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -210,16 +201,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md b/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md index 54cb0dad9775..b18ec4093896 100644 --- a/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDataConnectionNameAvailability.md @@ -67,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -83,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -99,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -116,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -132,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -148,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -165,7 +159,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -181,7 +174,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -197,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -214,7 +205,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -226,16 +216,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md b/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md index 6476d5a440f9..f46a0222bcfc 100644 --- a/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDatabaseNameAvailability.md @@ -67,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -83,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -100,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -116,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -132,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -149,7 +144,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -165,7 +159,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -181,7 +174,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -198,7 +190,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -210,16 +201,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md b/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md index b955fdd56716..c75a7df4530f 100644 --- a/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md +++ b/src/Kusto/docs/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.md @@ -67,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -83,7 +82,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -99,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -116,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -132,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -148,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -165,7 +159,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -181,7 +174,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -197,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -214,7 +205,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -226,16 +216,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICheckNameResult - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICheckNameResult ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Update-AzKustoCluster.md b/src/Kusto/docs/Update-AzKustoCluster.md index 47ea31c61747..5915313dcf0e 100644 --- a/src/Kusto/docs/Update-AzKustoCluster.md +++ b/src/Kusto/docs/Update-AzKustoCluster.md @@ -15,11 +15,11 @@ Update a Kusto cluster. ### UpdateExpanded (Default) ``` Update-AzKustoCluster -Name -ResourceGroupName [-SubscriptionId ] - [-EnableDiskEncryption] [-EnablePurge] [-EnableStreamingIngest] [-IdentityType ] - [-IdentityUserAssignedIdentity ] [-KeyVaultPropertyKeyName ] - [-KeyVaultPropertyKeyVaultUri ] [-KeyVaultPropertyKeyVersion ] - [-LanguageExtensionValue ] [-Location ] [-OptimizedAutoscaleIsEnabled] - [-OptimizedAutoscaleMaximum ] [-OptimizedAutoscaleMinimum ] + [-EnableDiskEncryption] [-EnableDoubleEncryption] [-EnablePurge] [-EnableStreamingIngest] + [-IdentityType ] [-IdentityUserAssignedIdentity ] + [-KeyVaultPropertyKeyName ] [-KeyVaultPropertyKeyVaultUri ] + [-KeyVaultPropertyKeyVersion ] [-LanguageExtensionValue ] [-Location ] + [-OptimizedAutoscaleIsEnabled] [-OptimizedAutoscaleMaximum ] [-OptimizedAutoscaleMinimum ] [-OptimizedAutoscaleVersion ] [-SkuCapacity ] [-SkuName ] [-SkuTier ] [-Tag ] [-TrustedExternalTenant ] [-VirtualNetworkConfigurationDataManagementPublicIPId ] @@ -29,11 +29,12 @@ Update-AzKustoCluster -Name -ResourceGroupName [-SubscriptionI ### UpdateViaIdentityExpanded ``` -Update-AzKustoCluster -InputObject [-EnableDiskEncryption] [-EnablePurge] - [-EnableStreamingIngest] [-IdentityType ] [-IdentityUserAssignedIdentity ] - [-KeyVaultPropertyKeyName ] [-KeyVaultPropertyKeyVaultUri ] - [-KeyVaultPropertyKeyVersion ] [-LanguageExtensionValue ] [-Location ] - [-OptimizedAutoscaleIsEnabled] [-OptimizedAutoscaleMaximum ] [-OptimizedAutoscaleMinimum ] +Update-AzKustoCluster -InputObject [-EnableDiskEncryption] [-EnableDoubleEncryption] + [-EnablePurge] [-EnableStreamingIngest] [-IdentityType ] + [-IdentityUserAssignedIdentity ] [-KeyVaultPropertyKeyName ] + [-KeyVaultPropertyKeyVaultUri ] [-KeyVaultPropertyKeyVersion ] + [-LanguageExtensionValue ] [-Location ] [-OptimizedAutoscaleIsEnabled] + [-OptimizedAutoscaleMaximum ] [-OptimizedAutoscaleMinimum ] [-OptimizedAutoscaleVersion ] [-SkuCapacity ] [-SkuName ] [-SkuTier ] [-Tag ] [-TrustedExternalTenant ] [-VirtualNetworkConfigurationDataManagementPublicIPId ] @@ -83,7 +84,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -99,7 +99,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EnableDiskEncryption @@ -115,7 +114,21 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False +``` + +### -EnableDoubleEncryption +A boolean value that indicates if double encryption is enabled. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ``` ### -EnablePurge @@ -131,7 +144,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EnableStreamingIngest @@ -147,7 +159,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -IdentityType @@ -163,7 +174,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -IdentityUserAssignedIdentity @@ -180,7 +190,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -197,7 +206,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -KeyVaultPropertyKeyName @@ -213,7 +221,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -KeyVaultPropertyKeyVaultUri @@ -229,7 +236,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -KeyVaultPropertyKeyVersion @@ -245,7 +251,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -LanguageExtensionValue @@ -253,7 +258,7 @@ The list of language extensions. To construct, see NOTES section for LANGUAGEEXTENSIONVALUE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ILanguageExtension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ILanguageExtension[] Parameter Sets: (All) Aliases: @@ -262,7 +267,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -278,7 +282,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -294,7 +297,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -310,7 +312,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OptimizedAutoscaleIsEnabled @@ -326,7 +327,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OptimizedAutoscaleMaximum @@ -342,7 +342,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OptimizedAutoscaleMinimum @@ -358,7 +357,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OptimizedAutoscaleVersion @@ -374,7 +372,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -390,7 +387,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SkuCapacity @@ -406,7 +402,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SkuName @@ -422,7 +417,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SkuTier @@ -438,7 +432,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -455,7 +448,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Tag @@ -471,7 +463,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TrustedExternalTenant @@ -479,7 +470,7 @@ The cluster's external tenants. To construct, see NOTES section for TRUSTEDEXTERNALTENANT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ITrustedExternalTenant[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ITrustedExternalTenant[] Parameter Sets: (All) Aliases: @@ -488,7 +479,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VirtualNetworkConfigurationDataManagementPublicIPId @@ -504,7 +494,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VirtualNetworkConfigurationEnginePublicIPId @@ -520,7 +509,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VirtualNetworkConfigurationSubnetId @@ -536,7 +524,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -552,7 +539,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -569,7 +555,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -581,16 +566,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.ICluster - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.ICluster ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. @@ -601,10 +587,10 @@ To create the parameters described below, construct a hash table containing the - `[ResourceGroupName ]`: The name of the resource group containing the Kusto cluster. - `[SubscriptionId ]`: Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. -#### LANGUAGEEXTENSIONVALUE : The list of language extensions. +LANGUAGEEXTENSIONVALUE : The list of language extensions. - `[Name ]`: The language extension name. -#### TRUSTEDEXTERNALTENANT : The cluster's external tenants. +TRUSTEDEXTERNALTENANT : The cluster's external tenants. - `[Value ]`: GUID representing an external tenant. ## RELATED LINKS diff --git a/src/Kusto/docs/Update-AzKustoDataConnection.md b/src/Kusto/docs/Update-AzKustoDataConnection.md index e18bdef4cbab..ac202afbd44e 100644 --- a/src/Kusto/docs/Update-AzKustoDataConnection.md +++ b/src/Kusto/docs/Update-AzKustoDataConnection.md @@ -25,10 +25,11 @@ Update-AzKustoDataConnection -ClusterName -DatabaseName -Name ### UpdateExpandedEventGrid ``` Update-AzKustoDataConnection -ClusterName -DatabaseName -Name - -ResourceGroupName -ConsumerGroup -DataFormat - -EventHubResourceId -Kind -Location -StorageAccountResourceId - -TableName [-SubscriptionId ] [-MappingRuleName ] [-DefaultProfile ] - [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + -ResourceGroupName -ConsumerGroup -EventHubResourceId -Kind + -Location -StorageAccountResourceId [-SubscriptionId ] + [-BlobStorageEventType ] [-DataFormat ] [-IgnoreFirstRecord] + [-MappingRuleName ] [-TableName ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] ``` ### UpdateExpandedIotHub @@ -44,9 +45,10 @@ Update-AzKustoDataConnection -ClusterName -DatabaseName -Name ### UpdateViaIdentityExpandedEventGrid ``` Update-AzKustoDataConnection -InputObject -ConsumerGroup - -DataFormat -EventHubResourceId -Kind -Location - -StorageAccountResourceId -TableName [-MappingRuleName ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + -EventHubResourceId -Kind -Location -StorageAccountResourceId + [-BlobStorageEventType ] [-DataFormat ] [-IgnoreFirstRecord] + [-MappingRuleName ] [-TableName ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] ``` ### UpdateViaIdentityExpandedEventHub @@ -155,7 +157,21 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False +``` + +### -BlobStorageEventType +The name of blob storage event type to process. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.BlobStorageEventType +Parameter Sets: UpdateExpandedEventGrid, UpdateViaIdentityExpandedEventGrid +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ``` ### -ClusterName @@ -171,7 +187,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Compression @@ -187,7 +202,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ConsumerGroup @@ -203,7 +217,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DatabaseName @@ -219,7 +232,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataFormat @@ -231,12 +243,11 @@ Type: Microsoft.Azure.PowerShell.Cmdlets.Kusto.Support.EventGridDataFormat Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -252,7 +263,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventHubResourceId @@ -268,7 +278,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -EventSystemProperty @@ -284,7 +293,21 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False +``` + +### -IgnoreFirstRecord +If set to true, indicates that ingestion should ignore the first record of every file. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: UpdateExpandedEventGrid, UpdateViaIdentityExpandedEventGrid +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ``` ### -InputObject @@ -301,7 +324,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -IotHubResourceId @@ -317,7 +339,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Kind @@ -333,7 +354,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -349,7 +369,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -MappingRuleName @@ -366,7 +385,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -382,7 +400,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -398,7 +415,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -414,7 +430,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SharedAccessPolicyName @@ -430,7 +445,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -StorageAccountResourceId @@ -446,7 +460,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -463,7 +476,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TableName @@ -475,12 +487,11 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -496,7 +507,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -513,7 +523,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -525,16 +534,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/docs/Update-AzKustoDatabase.md b/src/Kusto/docs/Update-AzKustoDatabase.md index 41a1060fc6c3..cccdb5c0e639 100644 --- a/src/Kusto/docs/Update-AzKustoDatabase.md +++ b/src/Kusto/docs/Update-AzKustoDatabase.md @@ -98,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ClusterName @@ -114,7 +113,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -130,7 +128,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -HotCachePeriod @@ -146,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -163,7 +159,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Kind @@ -179,7 +174,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -195,7 +189,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -211,7 +204,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -227,7 +219,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ResourceGroupName @@ -243,7 +234,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SoftDeletePeriod @@ -259,7 +249,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -276,7 +265,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -292,7 +280,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -309,7 +296,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -321,16 +307,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDatabase - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDatabase ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[AttachedDatabaseConfigurationName ]`: The name of the attached database configuration. - `[ClusterName ]`: The name of the Kusto cluster. - `[DataConnectionName ]`: The name of the data connection. diff --git a/src/Kusto/examples/New-AzKustoCluster.md b/src/Kusto/examples/New-AzKustoCluster.md index 12d5d9504d32..bd3f126e0848 100644 --- a/src/Kusto/examples/New-AzKustoCluster.md +++ b/src/Kusto/examples/New-AzKustoCluster.md @@ -1,6 +1,6 @@ ### Example 1: Create a new Kusto cluster ```powershell -PS C:\> New-AzKustoCluster -ResourceGroupName testrg -Name testnewkustocluster -Location 'East US' -SkuName Standard_D11_v2 -SkuTier Standard +PS C:\> New-AzKustoCluster -ResourceGroupName testrg -Name testnewkustocluster -Location 'East US' -SkuName Standard_D11_v2 -SkuTier Standard -EnableDoubleEncryption true Location Name Type Zone -------- ---- ---- ---- diff --git a/src/Kusto/examples/New-AzKustoDataConnection.md b/src/Kusto/examples/New-AzKustoDataConnection.md index e2acfb84be6c..22eddcc2ccea 100644 --- a/src/Kusto/examples/New-AzKustoDataConnection.md +++ b/src/Kusto/examples/New-AzKustoDataConnection.md @@ -11,7 +11,7 @@ The above command creates a new EventHub data connection named "myeventhubdc" fo ### Example 2: Create a new EventGrid data connection ```powershell -PS C:\> New-AzKustoDataConnection -ResourceGroupName "testrg" -ClusterName "testnewkustocluster" -DatabaseName "mykustodatabase" -DataConnectionName "myeventgriddc" -Location="East US" -Kind "EventGrid" -EventHubResourceId "/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub" -StorageAccountResourceId $storageAccountResourceId "/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.Storage/storageAccounts/mystorage" -DataFormat "JSON" -ConsumerGroup '$Default' -TableName "Events" -MappingRuleName "EventsMapping" +PS C:\> New-AzKustoDataConnection -ResourceGroupName "testrg" -ClusterName "testnewkustocluster" -DatabaseName "mykustodatabase" -DataConnectionName "myeventgriddc" -Location="East US" -Kind "EventGrid" -EventHubResourceId "/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.EventHub/namespaces/myeventhubns/eventhubs/myeventhub" -StorageAccountResourceId $storageAccountResourceId "/subscriptions/$subscriptionId/resourcegroups/testrg/providers/Microsoft.Storage/storageAccounts/mystorage" -DataFormat "JSON" -ConsumerGroup '$Default' -TableName "Events" -MappingRuleName "EventsMapping" -IgnoreFirstRecord "false" -BlobStorageEventType "Microsoft.Storage.BlobRenamed" Kind Location Name Type ---- -------- ---- ---- diff --git a/src/Kusto/how-to.md b/src/Kusto/how-to.md new file mode 100644 index 000000000000..85a8fa771acc --- /dev/null +++ b/src/Kusto/how-to.md @@ -0,0 +1,58 @@ +# How-To +This document describes how to develop for `Az.Kusto`. + +## Building `Az.Kusto` +To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [readme.md](exports/readme.md) in the `exports` folder. + +## Creating custom cmdlets +To add cmdlets that were not generated by the REST specification, use the `custom` folder. This folder allows you to add handwritten `.ps1` and `.cs` files. Currently, we support using `.ps1` scripts as new cmdlets or as additional low-level variants (via `ParameterSet`), and `.cs` files as low-level (variants) cmdlets that the exported script cmdlets call. We do not support exporting any `.cs` (dll) cmdlets directly. To read more about custom cmdlets, look at the [readme.md](custom/readme.md) in the `custom` folder. + +## Generating documentation +To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [readme.md](examples/readme.md) in the `examples` folder. To read more about documentation, look at the [readme.md](docs/readme.md) in the `docs` folder. + +## Testing `Az.Kusto` +To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [readme.md](examples/readme.md) in the `examples` folder. + +## Packing `Az.Kusto` +To pack `Az.Kusto` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://docs.microsoft.com/en-us/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. + +## Module Script Details +There are multiple scripts created for performing different actions for developing `Az.Kusto`. +- `build-module.ps1` + - Builds the module DLL (`./bin/Az.Kusto.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.Kusto.psd1` with Azure profile information. + - **Parameters**: [`Switch` parameters] + - `-Run`: After building, creates an isolated PowerShell session and loads `Az.Kusto`. + - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. + - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. + - `-Pack`: After building, packages the module into a `.nupkg`. + - `-Code`: After building, opens a VSCode window with the module's directory and runs (see `-Run`) the module. + - `-Release`: Builds the module in `Release` configuration (as opposed to `Debug` configuration). + - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. + - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. +- `run-module.ps1` + - Creates an isolated PowerShell session and loads `Az.Kusto` into the session. + - Same as `-Run` in `build-module.ps1`. + - **Parameters**: [`Switch` parameters] + - `-Code`: Opens a VSCode window with the module's directory. + - Same as `-Code` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. +- `test-module.ps1` + - Runs the `Pester` tests defined in the `test` folder. + - Same as `-Test` in `build-module.ps1`. +- `pack-module.ps1` + - Packages the module into a `.nupkg` for distribution. + - Same as `-Pack` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. + - This process is now integrated into `build-module.ps1` automatically. To disable, use `-NoDocs` when running `build-module.ps1`. +- `export-surface.ps1` + - Generates Markdown documents for both the cmdlet surface and the model (class) surface of the module. + - These files are placed into the `resources` folder. + - Used for investigating the surface of your module. These are *not* documentation for distribution. +- `check-dependencies.ps1` + - Used in `run-module.ps1` and `test-module.ps1` to verify dependent modules are available to run those tasks. + - It will download local (within the module's directory structure) versions of those modules as needed. + - This script *does not* need to be ran by-hand. \ No newline at end of file diff --git a/src/Kusto/license.txt b/src/Kusto/license.txt new file mode 100644 index 000000000000..b9f3180fb9af --- /dev/null +++ b/src/Kusto/license.txt @@ -0,0 +1,227 @@ +MICROSOFT SOFTWARE LICENSE TERMS + +MICROSOFT AZURE POWERSHELL + +These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. + +BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. + + +-----------------START OF LICENSE-------------------------- + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +-------------------END OF LICENSE------------------------------------------ + + +----------------START OF THIRD PARTY NOTICE-------------------------------- + + +The software includes the AutoMapper library ("AutoMapper"). The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software. + +Provided for Informational Purposes Only + +AutoMapper + +The MIT License (MIT) +Copyright (c) 2010 Jimmy Bogard + + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + + + + +*************** + +The software includes Newtonsoft.Json. The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software. + +Newtonsoft.Json + +The MIT License (MIT) +Copyright (c) 2007 James Newton-King +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +-------------END OF THIRD PARTY NOTICE---------------------------------------- + diff --git a/src/Kusto/readme.md b/src/Kusto/readme.md index e9961c87bd35..2bc066b6539c 100644 --- a/src/Kusto/readme.md +++ b/src/Kusto/readme.md @@ -17,7 +17,7 @@ This directory contains the PowerShell module for the Kusto service. This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. ## Module Requirements -- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.7.2 or greater +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.7.4 or greater ## Authentication AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. @@ -52,7 +52,7 @@ In this directory, run AutoRest: require: - $(this-folder)/../readme.azure.noprofile.md input-file: - - $(repo)/specification/azure-kusto/resource-manager/Microsoft.Kusto/stable/2020-02-15/kusto.json + - $(repo)/specification/azure-kusto/resource-manager/Microsoft.Kusto/stable/2020-06-14/kusto.json ``` @@ -127,5 +127,5 @@ directive: # Correct some generated code - from: source-file-csharp where: $ - transform: $ = $.replace('internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Property', 'public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200215.IDataConnection Property'); + transform: $ = $.replace('internal Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Property', 'public Microsoft.Azure.PowerShell.Cmdlets.Kusto.Models.Api20200614.IDataConnection Property'); ``` diff --git a/src/Kusto/resources/readme.md b/src/Kusto/resources/readme.md new file mode 100644 index 000000000000..937f07f8fec2 --- /dev/null +++ b/src/Kusto/resources/readme.md @@ -0,0 +1,11 @@ +# Resources +This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder. + +## Info +- Modifiable: yes +- Generated: no +- Committed: yes +- Packaged: no + +## Purpose +Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact. \ No newline at end of file diff --git a/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json index 4f7a3ae778e2..2462653d737b 100644 --- a/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json +++ b/src/Kusto/test/Add-AzKustoClusterLanguageExtension.Recording.json @@ -1,8 +1,8 @@ { - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/addLanguageExtensions?api-version=2020-02-15+1": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/addLanguageExtensions?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/addLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/addLanguageExtensions?api-version=2020-06-14", "Content": "{\r\n \"value\": [\r\n {\r\n \"languageExtensionName\": \"R\"\r\n }\r\n ]\r\n}", "Headers": { }, @@ -16,17 +16,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "d745d1fc-12b8-4108-a623-2ff4b9921c45" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "a9103e6c-65fe-4621-b193-94502063c0ab" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "3872460c-1fbb-4a4e-b6fc-d10c2392570e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111155Z:3872460c-1fbb-4a4e-b6fc-d10c2392570e" ], + "x-ms-correlation-request-id": [ "4a0f5706-29e9-4669-8d37-0012be45a15b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231038Z:4a0f5706-29e9-4669-8d37-0012be45a15b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:11:55 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:10:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -35,14 +35,14 @@ "Content": null } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+2": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -58,32 +58,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "caefe237-ffb3-439f-83cd-fd6386bc217c" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], + "x-ms-request-id": [ "df3d430c-0077-467d-ac45-7ee988d6c3e2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7d52ae56-962c-4c0c-8e88-27114e6c7683" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111226Z:7d52ae56-962c-4c0c-8e88-27114e6c7683" ], + "x-ms-correlation-request-id": [ "f877cf0f-f1c7-41ce-b532-0dd28823db34" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231109Z:f877cf0f-f1c7-41ce-b532-0dd28823db34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:12:25 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:11:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+3": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -99,32 +99,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ce7b39ed-ca53-4221-8d9e-72f713991dee" ], - "x-ms-request-id": [ "7f39fc87-31e4-4593-863b-584a01228a0c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], + "x-ms-request-id": [ "f1881f94-246b-48a2-959c-86719f72b20d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111256Z:ce7b39ed-ca53-4221-8d9e-72f713991dee" ], + "x-ms-correlation-request-id": [ "bcd9e393-4a53-4225-8911-2352a4d7d56f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231139Z:bcd9e393-4a53-4225-8911-2352a4d7d56f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:12:55 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:11:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+4": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -140,32 +140,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "b101c050-eeef-474c-90fa-e1da2f787f40" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], + "x-ms-request-id": [ "9a3a163e-0737-4942-a022-1ff9ee200674" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bfcc75c2-4aa6-48d6-8e5b-da7cc206ed8a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111326Z:bfcc75c2-4aa6-48d6-8e5b-da7cc206ed8a" ], + "x-ms-correlation-request-id": [ "ade621c1-0e37-44a0-91e7-d4afa63e3374" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231209Z:ade621c1-0e37-44a0-91e7-d4afa63e3374" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:13:26 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:12:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+5": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -181,32 +181,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "234a7244-61e9-4847-b8ed-6ec76b67d761" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "f407dc10-7b16-4243-bb61-d58b8490e81f" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6d907104-e217-4c39-b97a-ce2898ab0e98" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111357Z:6d907104-e217-4c39-b97a-ce2898ab0e98" ], + "x-ms-correlation-request-id": [ "edeaf169-3081-4b39-b5c1-1c8e7c471398" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231239Z:edeaf169-3081-4b39-b5c1-1c8e7c471398" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:13:56 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:12:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+6": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -222,32 +222,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "5f510538-b124-4896-92e9-40b0a7d4bb8c" ], - "x-ms-request-id": [ "82eda250-21c2-4e3e-8dfb-16767fe2f541" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "13ac5131-68ba-4f48-998d-6b94fd219fd6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111427Z:5f510538-b124-4896-92e9-40b0a7d4bb8c" ], + "x-ms-correlation-request-id": [ "d82aab69-f508-4811-96db-19cc1ab232b0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231310Z:d82aab69-f508-4811-96db-19cc1ab232b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:14:27 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:13:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+7": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -263,32 +263,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "272a3ec0-2ece-4a7c-925c-b3e2aa862c05" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "ef1ec114-5bdf-43a6-91be-b4ea759e34a5" ], + "x-ms-request-id": [ "4824263d-81b0-4b9e-a0cb-866117613812" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fa55f98e-84cb-4f11-bcb5-5abcbd7629a8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111458Z:fa55f98e-84cb-4f11-bcb5-5abcbd7629a8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231340Z:ef1ec114-5bdf-43a6-91be-b4ea759e34a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:14:57 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:13:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+8": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -304,32 +304,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "3fcf2848-0a03-4d3a-ab77-69b6cb33334d" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "664178df-0e81-42a1-a425-2edd7b667e3c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ee4dfdfd-a0de-4e87-be5a-af428d214102" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111528Z:ee4dfdfd-a0de-4e87-be5a-af428d214102" ], + "x-ms-correlation-request-id": [ "9e30c5ff-a363-4edb-aab5-7f0bc671db1d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231410Z:9e30c5ff-a363-4edb-aab5-7f0bc671db1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:15:27 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:14:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+9": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -345,32 +345,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "29c52963-d454-48db-b947-f4f9e6d5965e" ], - "x-ms-request-id": [ "9ff3bb40-152a-4f25-a484-746ac9c511de" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "d1630d7a-5072-4d6f-a071-4f00eb24a07d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111558Z:29c52963-d454-48db-b947-f4f9e6d5965e" ], + "x-ms-correlation-request-id": [ "cc4c1e29-e8c5-4413-8c61-747ad537e1e9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231441Z:cc4c1e29-e8c5-4413-8c61-747ad537e1e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:15:57 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:14:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+10": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -386,32 +386,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "2a74c7f1-52bd-479d-8330-9474087b210c" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "5d879a1b-86f2-4cbf-b0e5-5a232181f7d5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "79f7cf5b-9f0a-4361-b20c-636de97aca34" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111629Z:79f7cf5b-9f0a-4361-b20c-636de97aca34" ], + "x-ms-correlation-request-id": [ "8d7e9b1a-5e34-44b9-a8c4-d8b91d5f685d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231511Z:8d7e9b1a-5e34-44b9-a8c4-d8b91d5f685d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:16:28 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:15:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+11": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -427,32 +427,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "bcce44de-c9f4-4ace-b447-5953d66e154d" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "05a02217-ed52-4045-9f3a-50fcb0f0fa13" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "38a2a4b2-bdc4-4ac7-9507-51c4b674bff9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111659Z:38a2a4b2-bdc4-4ac7-9507-51c4b674bff9" ], + "x-ms-correlation-request-id": [ "90fb608e-79b1-4096-a7ee-e89dba9e81bc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231541Z:90fb608e-79b1-4096-a7ee-e89dba9e81bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:16:58 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:15:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+12": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -468,32 +468,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0746a9d1-1298-4c2b-b2da-b3c8f3e03c1b" ], - "x-ms-request-id": [ "d2052bb2-21f0-495e-ba34-5f159a563299" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "4f7a3c76-17d4-43c2-b4ca-2183fad79b5f" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111729Z:0746a9d1-1298-4c2b-b2da-b3c8f3e03c1b" ], + "x-ms-correlation-request-id": [ "8c833f99-03c6-474a-87b6-9aaa697290b0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231611Z:8c833f99-03c6-474a-87b6-9aaa697290b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:17:28 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:16:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+13": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -509,32 +509,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "fcd38d30-4a79-4c74-b226-6f16305f0dd6" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "56f756ba-7010-4638-a736-2c8ec6065d6a" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f5d2b3ae-a3fb-42ea-96ee-f9cdf88a0acf" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111800Z:f5d2b3ae-a3fb-42ea-96ee-f9cdf88a0acf" ], + "x-ms-correlation-request-id": [ "8a5b1775-c0af-4a30-892d-80a47622b298" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231641Z:8a5b1775-c0af-4a30-892d-80a47622b298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:17:59 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:16:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+14": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -550,32 +550,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "844837b5-5a5b-47ca-8731-ef6f3c32578e" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "60fd7247-9a3f-4221-96f3-25a53d89fcd3" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0680ddbf-bce2-4d05-8fc3-b17ee2716da4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111830Z:0680ddbf-bce2-4d05-8fc3-b17ee2716da4" ], + "x-ms-correlation-request-id": [ "5128ac9e-57a9-4ccd-9336-89de03130078" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231712Z:5128ac9e-57a9-4ccd-9336-89de03130078" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:18:29 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+15": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -591,32 +591,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ade1d9f4-3a0c-4d67-8e27-1b7143d70a8e" ], - "x-ms-request-id": [ "f6234bae-1a6b-4deb-b47d-7dead6b59970" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "ff7a5cf6-d367-484a-8c55-b30f9b210784" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111900Z:ade1d9f4-3a0c-4d67-8e27-1b7143d70a8e" ], + "x-ms-correlation-request-id": [ "1198ced9-c8ee-4f58-a1f4-0b6fea72de95" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231742Z:1198ced9-c8ee-4f58-a1f4-0b6fea72de95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:19:00 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:17:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+16": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -632,32 +632,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "4ee609ce-79e9-4ea3-abf7-724d9a31f28e" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "3b92c534-255b-4603-9cb1-456f6556462f" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "83bb7889-e83c-4481-af61-f10be125f196" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T111931Z:83bb7889-e83c-4481-af61-f10be125f196" ], + "x-ms-correlation-request-id": [ "8ee88df4-41d0-471d-b384-635c1bc6780f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231812Z:8ee88df4-41d0-471d-b384-635c1bc6780f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:19:30 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:18:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+17": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -673,32 +673,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "f56392db-98ff-458a-94e8-d36667584035" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "79eb6975-fd56-4b07-a153-af20ef95a2ee" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7f95d987-ddcb-4619-95f9-fd9f727c8f44" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112001Z:7f95d987-ddcb-4619-95f9-fd9f727c8f44" ], + "x-ms-correlation-request-id": [ "4dbf5edd-981a-43f9-8e9e-c95501747e6d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231842Z:4dbf5edd-981a-43f9-8e9e-c95501747e6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:20:00 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:18:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+18": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -714,32 +714,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "1b54436d-e56d-47d7-a9e0-7edc4a38c6d0" ], - "x-ms-request-id": [ "74e36a49-b9ce-40ff-8f6a-4e526b2686c3" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "24b6176c-3368-418f-9ca2-4026bda93bb5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112031Z:1b54436d-e56d-47d7-a9e0-7edc4a38c6d0" ], + "x-ms-correlation-request-id": [ "7edae57a-f03d-4292-8154-fe9ffe6e63a8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231913Z:7edae57a-f03d-4292-8154-fe9ffe6e63a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:20:31 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:19:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+19": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -755,32 +755,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "82158d7a-7321-4cdf-bb4e-3d8774e029cf" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "1e13e7c0-dbde-4851-b38d-aaaeb95d5bb7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "9c367ecd-766b-4206-8d9f-6d587b99f0e2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112102Z:9c367ecd-766b-4206-8d9f-6d587b99f0e2" ], + "x-ms-correlation-request-id": [ "86037ab7-13fa-4be6-b850-4b1516e99f5c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T231943Z:86037ab7-13fa-4be6-b850-4b1516e99f5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:21:01 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:19:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:10:41.4176041Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+20": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -796,32 +796,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "4238d5b0-04e4-4b3d-9322-d3156e285a40" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "e5f57d19-4dd5-4bc0-b16c-2fab3df07962" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fc7e7786-c190-4e68-9fb6-05696d162d7c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112132Z:fc7e7786-c190-4e68-9fb6-05696d162d7c" ], + "x-ms-correlation-request-id": [ "eeb64e10-9b98-460a-ac51-1b651eec9f75" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232013Z:eeb64e10-9b98-460a-ac51-1b651eec9f75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:21:32 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "506" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:11:57.1717909Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5784f26e-dab8-4072-8866-d90260ad115c\",\"name\":\"5784f26e-dab8-4072-8866-d90260ad115c\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:10:38.807944Z\",\"endTime\":\"2020-08-02T23:20:06.4337349Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"77899889-29a8-4c7e-9a09-b4ee202c1d92\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15+21": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14\u0026operationResultResponseType=Location+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5784f26e-dab8-4072-8866-d90260ad115c?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], + "x-ms-unique-id": [ "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141" ], + "x-ms-client-request-id": [ "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd", "b102e763-480e-450d-a56f-bb82443c53bd" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -836,56 +836,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "b7a1cd59-245b-4673-9a7e-8edab6ae895e" ], - "x-ms-request-id": [ "09aa0ced-6e00-4010-bdb1-e7290ebbfd25" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "b8a8c32d-424c-4a32-ae64-27c5c329abda" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112202Z:b7a1cd59-245b-4673-9a7e-8edab6ae895e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:02 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "478" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"name\":\"c5fac810-8d04-4c0d-b58b-a92716007d7c\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:11:55.7811462Z\",\"endTime\":\"2020-05-07T11:21:51.1282187Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"042db2f5-5879-4b2f-b39a-df3026f1ae0d\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15\u0026operationResultResponseType=Location+22": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c5fac810-8d04-4c0d-b58b-a92716007d7c?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125" ], - "x-ms-client-request-id": [ "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502", "fa0f4643-a6fa-4bd5-b2eb-493014dd5502" ], - "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], - "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded", "Add-AzKustoClusterLanguageExtension_AddExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "70a954c7-5394-42e7-8642-382f7dbaf4de" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "803a8c66-18a1-43c4-9d00-ca9c1ef1c1e9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112203Z:803a8c66-18a1-43c4-9d00-ca9c1ef1c1e9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-correlation-request-id": [ "cbd17e37-adbd-49cb-a539-26a4d40563d9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232013Z:cbd17e37-adbd-49cb-a539-26a4d40563d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:02 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -894,14 +853,14 @@ "Content": null } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+1": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "126" ], - "x-ms-client-request-id": [ "5f28e573-a604-475c-b4e2-245d3f4f80e1" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "0aa027cd-8ea0-4798-8c40-8e392e51d734" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -919,27 +878,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "083fdd1a-89d3-4f3b-8aed-6f313f3396d4" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "816b36a5-6a54-4404-b3e0-801ed9568afd" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5774070d-5023-4b2a-a3e3-4bf09429006f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112203Z:5774070d-5023-4b2a-a3e3-4bf09429006f" ], + "x-ms-correlation-request-id": [ "b0559bcd-05a1-4007-8a35-cf4335f68eac" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232014Z:b0559bcd-05a1-4007-8a35-cf4335f68eac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:03 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "792" ], + "Content-Length": [ "823" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/addLanguageExtensions?api-version=2020-02-15+2": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/addLanguageExtensions?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/addLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/addLanguageExtensions?api-version=2020-06-14", "Content": "{\r\n \"value\": [\r\n {\r\n \"languageExtensionName\": \"PYTHON\"\r\n }\r\n ]\r\n}", "Headers": { }, @@ -953,17 +912,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "1b3856e4-4168-4741-9d99-fbe5f96698eb" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "ce85995c-64f3-454a-8c34-6cbfb8f5a161" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "7213e554-300d-4c2e-9c46-36243375742d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112204Z:7213e554-300d-4c2e-9c46-36243375742d" ], + "x-ms-correlation-request-id": [ "fdb89244-0e88-48d1-b2e2-f85ea684d126" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232014Z:fdb89244-0e88-48d1-b2e2-f85ea684d126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:03 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:14 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -972,14 +931,14 @@ "Content": null } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+3": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -995,32 +954,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "d4cd3fe1-9f38-4ef4-957e-af17cc6b99de" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "7f9c538e-0b82-421a-bc45-3bcd185ef533" ], + "x-ms-request-id": [ "2959a833-a9cb-437a-b4b0-ffb079966bb7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "aadd2d33-2a13-48db-af53-14ea90a27cfd" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112234Z:aadd2d33-2a13-48db-af53-14ea90a27cfd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232044Z:7f9c538e-0b82-421a-bc45-3bcd185ef533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:22:33 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:20:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+4": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1036,32 +995,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ca6a983e-1558-4c1b-9b69-bdd855cf9a3c" ], - "x-ms-request-id": [ "16a437a0-6b4a-43da-8b6e-b52c403a064b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "772ff946-7e24-47ed-a426-7930bbf89c0c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112304Z:ca6a983e-1558-4c1b-9b69-bdd855cf9a3c" ], + "x-ms-correlation-request-id": [ "02e3f873-7286-487a-9125-8feb840efa41" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232115Z:02e3f873-7286-487a-9125-8feb840efa41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:23:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:21:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+5": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1077,32 +1036,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "671b7220-40e4-4bd3-9b93-af5f860b5eff" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "7b51b268-1501-4c05-8bba-df0e6ace52a2" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b81b9e6e-b7b2-47df-8775-511b4970e1a5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112335Z:b81b9e6e-b7b2-47df-8775-511b4970e1a5" ], + "x-ms-correlation-request-id": [ "b14108f7-8262-45fd-b1a7-2eab731e4af3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232145Z:b14108f7-8262-45fd-b1a7-2eab731e4af3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:23:34 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:21:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+6": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1118,32 +1077,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "034def2c-c3a5-4900-85a7-7991596a286b" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "8c5233cf-2408-4478-9d92-85ed91c205de" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "48be3b2f-cdaa-44e2-b26e-6c3c7391c770" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112405Z:48be3b2f-cdaa-44e2-b26e-6c3c7391c770" ], + "x-ms-correlation-request-id": [ "b396a3d6-c2b5-475f-a6bb-5689533f2823" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232216Z:b396a3d6-c2b5-475f-a6bb-5689533f2823" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:24:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:22:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+7": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1159,32 +1118,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a2ab1687-84d7-4af1-8596-806f0f5812ea" ], - "x-ms-request-id": [ "a0421875-faf7-4306-b4de-0bc9a1fd1b01" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "6f8d7fbf-1c7c-47dd-a6e4-ea64d4bc626b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112437Z:a2ab1687-84d7-4af1-8596-806f0f5812ea" ], + "x-ms-correlation-request-id": [ "12b61381-fb03-427f-915e-030c6195e011" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232246Z:12b61381-fb03-427f-915e-030c6195e011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:24:37 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:22:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+8": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1200,32 +1159,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "08412179-8af0-4433-a0ce-1fa9f9dc7b94" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "145e69e5-d09d-48f6-be2b-276be38eca4b" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "19f51071-312b-42e6-9fa2-cd783fd6dd0c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112508Z:19f51071-312b-42e6-9fa2-cd783fd6dd0c" ], + "x-ms-correlation-request-id": [ "9d9a8316-39d1-4b37-a461-9847022b6b2d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232316Z:9d9a8316-39d1-4b37-a461-9847022b6b2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:25:07 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:23:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+9": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1241,32 +1200,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "daac2694-191a-429e-90e0-482725b5d729" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "55122758-10c4-40d7-b581-a932f44e4d7c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5c0bea2f-c3d6-4a0a-b40f-188c154f8751" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112538Z:5c0bea2f-c3d6-4a0a-b40f-188c154f8751" ], + "x-ms-correlation-request-id": [ "b1f684a0-d840-42ff-99bc-f3a644b75c7e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232346Z:b1f684a0-d840-42ff-99bc-f3a644b75c7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:25:37 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:23:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+10": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1282,32 +1241,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "21ad3d0b-25a2-4c59-b067-bc55dd6aa703" ], - "x-ms-request-id": [ "e4642617-d656-4d60-9ffa-416ec7ac78e9" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "8f91b83d-b53f-492c-8c0f-59bf7dd2805e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112608Z:21ad3d0b-25a2-4c59-b067-bc55dd6aa703" ], + "x-ms-correlation-request-id": [ "f33adf34-70a7-48a9-928d-f800313971fa" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232416Z:f33adf34-70a7-48a9-928d-f800313971fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:26:08 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:24:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+11": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1323,32 +1282,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "cba663ba-ebc7-4e63-bb3a-b76a578e0d07" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "45b3baa8-12be-4899-bcac-71acd1ce507b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f1632cdf-c413-4e89-9603-98bb0a4b4ad8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112639Z:f1632cdf-c413-4e89-9603-98bb0a4b4ad8" ], + "x-ms-correlation-request-id": [ "1078924d-e53e-4816-80ec-df69187ca0b5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232447Z:1078924d-e53e-4816-80ec-df69187ca0b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:26:38 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:24:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+12": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1364,32 +1323,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "9ca19071-2183-4d18-ace2-867e5189023c" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "02603577-b3a0-4376-a526-ca644e0ec83e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "2e94259e-06f2-4e10-83b2-c15dec7d5bc8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112709Z:2e94259e-06f2-4e10-83b2-c15dec7d5bc8" ], + "x-ms-correlation-request-id": [ "ac92559f-7caa-461d-9e58-5da5216fa156" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232517Z:ac92559f-7caa-461d-9e58-5da5216fa156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:27:09 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:25:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+13": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1405,32 +1364,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "25f38ec9-05d9-4e35-be77-802c2c41ea0c" ], - "x-ms-request-id": [ "168e331b-ed5a-4d01-ad67-dd2ade5788d4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "82b8e185-0950-428f-af1d-7197c5cac645" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112739Z:25f38ec9-05d9-4e35-be77-802c2c41ea0c" ], + "x-ms-correlation-request-id": [ "4cc9d3e4-2938-46e0-a8b2-f17d6b3485bd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232547Z:4cc9d3e4-2938-46e0-a8b2-f17d6b3485bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:27:39 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:25:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+14": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1446,32 +1405,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "021353f0-6b69-4687-aaae-0263cace9004" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "c4b596e8-4894-4d5c-ab6c-7e233bc64b9c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "98ab56c7-372c-44f1-9939-147799af4b5c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112810Z:98ab56c7-372c-44f1-9939-147799af4b5c" ], + "x-ms-correlation-request-id": [ "ce2f91a6-1f6d-41c1-a252-40f9178a7bf8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232617Z:ce2f91a6-1f6d-41c1-a252-40f9178a7bf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:28:09 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:26:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+15": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155", "156" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1487,32 +1446,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "65a43612-954a-4a1a-befe-f44cdebe71b5" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "6864550f-5798-451b-9483-9d3f6a9a65af" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ecbf0296-fd7f-4cd5-a570-3458b145d5de" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112840Z:ecbf0296-fd7f-4cd5-a570-3458b145d5de" ], + "x-ms-correlation-request-id": [ "0a704611-80bc-423b-8e00-4fd0f6d6c429" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232648Z:0a704611-80bc-423b-8e00-4fd0f6d6c429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:28:40 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:26:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+16": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155", "156", "157" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1528,32 +1487,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "81fb8d34-d4aa-4d0c-9b80-6265fdfa0557" ], - "x-ms-request-id": [ "ade53d13-de11-4330-a292-6bb4147ea598" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "8b8eadbb-9a9a-4f3a-bb67-968730e8ec58" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112910Z:81fb8d34-d4aa-4d0c-9b80-6265fdfa0557" ], + "x-ms-correlation-request-id": [ "ed32d1cd-287c-43aa-8c9d-e83f5fb21ca5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232718Z:ed32d1cd-287c-43aa-8c9d-e83f5fb21ca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:29:10 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:27:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+17": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155", "156", "157", "158" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1569,32 +1528,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "a3804026-a695-425a-8d0b-04ce9d39a6f2" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "a4d8044e-c06e-452e-b82c-c35b345cfec8" ], + "x-ms-request-id": [ "794a3ae5-f22c-471d-a721-6b1fffe7eeab" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3b2a2abc-56b2-498e-8f8c-a4a56a11498b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T112941Z:3b2a2abc-56b2-498e-8f8c-a4a56a11498b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232750Z:a4d8044e-c06e-452e-b82c-c35b345cfec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:29:40 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:27:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:20:17.1094595Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+18": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155", "156", "157", "158", "159" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1610,32 +1569,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "1ef6c82e-f7d1-4e79-9998-fd7835642f0d" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "d89cfca7-e97d-4a0d-9be3-d97655dcf0e1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7c2eac22-fd88-4db5-9c08-d09a5b871512" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113011Z:7c2eac22-fd88-4db5-9c08-d09a5b871512" ], + "x-ms-correlation-request-id": [ "22cc2280-85f4-457f-a344-bbbf5a18a6ab" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232820Z:22cc2280-85f4-457f-a344-bbbf5a18a6ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:30:11 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"name\":\"6fc57e0d-00da-40dc-9ff5-903ed2bd50fe\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:20:14.5780056Z\",\"endTime\":\"2020-08-02T23:27:54.5842344Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6a0aaded-29d8-4957-975c-7a6d76ffe4cc\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+19": { + "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14\u0026operationResultResponseType=Location+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6fc57e0d-00da-40dc-9ff5-903ed2bd50fe?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], + "x-ms-unique-id": [ "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155", "156", "157", "158", "159", "160" ], + "x-ms-client-request-id": [ "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617", "c47e9d39-56d0-47af-a435-8e32fb9f7617" ], "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1650,138 +1609,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "b26b0a3b-2257-4072-910f-a10e931d7c08" ], - "x-ms-request-id": [ "05ebfa06-7946-402a-b017-f87b49c53ffc" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113041Z:b26b0a3b-2257-4072-910f-a10e931d7c08" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:30:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "474" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" - } - }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+20": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], - "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], - "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "cb6cefb7-2747-4f2f-8bdd-ca070666f958" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "9038c63b-e690-48c5-bfa4-8c700687b005" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113112Z:9038c63b-e690-48c5-bfa4-8c700687b005" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:12 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "474" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:22:05.5266988Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Running\"}}" - } - }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15+21": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], - "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], - "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "0d96321d-4678-42fc-8be0-2254e9be081e" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "45d2adbf-723e-4d63-9848-64f1a84fdd13" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113142Z:45d2adbf-723e-4d63-9848-64f1a84fdd13" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:42 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "478" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"name\":\"416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:22:04.1037636Z\",\"endTime\":\"2020-05-07T11:31:18.8549066Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"20fdc984-8a17-44ac-83ef-292b51b64a42\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Add-AzKustoClusterLanguageExtension+[NoContext]+AddViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15\u0026operationResultResponseType=Location+22": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/416ec5ee-a8fe-43a4-b19d-7b0fab8e1dca?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147" ], - "x-ms-client-request-id": [ "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4", "5c8d3ec7-5eb0-461c-af2b-61972fde5cb4" ], - "CommandName": [ "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension", "Add-AzKustoClusterLanguageExtension" ], - "FullCommandName": [ "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded", "Add-AzKustoClusterLanguageExtension_AddViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e914daeb-a3de-45e0-9622-a20ee6e53760" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "f2c6251f-d0e7-446c-8c59-cd5f56ec1b34" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "2022f4fe-4be4-45aa-b51a-f30dbc4b6caa" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113143Z:2022f4fe-4be4-45aa-b51a-f30dbc4b6caa" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-correlation-request-id": [ "8038853e-76d3-4aa2-a9e8-260d4985b05e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232820Z:8038853e-76d3-4aa2-a9e8-260d4985b05e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:42 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json b/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json index 594e9caffcc8..a2e9ebb436a5 100644 --- a/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json +++ b/src/Kusto/test/Get-AzKustoAttachedDatabaseConfiguration.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoAttachedDatabaseConfiguration+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/attachedDatabaseConfigurations?api-version=2020-02-15+1": { + "Get-AzKustoAttachedDatabaseConfiguration+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/attachedDatabaseConfigurations?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/attachedDatabaseConfigurations?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/attachedDatabaseConfigurations?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "148" ], - "x-ms-client-request-id": [ "8ffc4e37-d13a-4694-a3e7-b7189a24e9b9" ], + "x-ms-unique-id": [ "161" ], + "x-ms-client-request-id": [ "8de8dce2-49d0-4efa-ba1b-20d91a1dbb49" ], "CommandName": [ "Get-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "Get-AzKustoAttachedDatabaseConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,31 +23,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "943a28c9-a971-40ae-8106-a30d8b3509e6" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "2d8e906c-c566-4145-8fa1-c238094b5137" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fca056bd-961b-4447-9558-ee8532e08463" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113144Z:fca056bd-961b-4447-9558-ee8532e08463" ], + "x-ms-correlation-request-id": [ "ef144253-565e-405e-87c7-47e2648cfd83" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232822Z:ef144253-565e-405e-87c7-47e2648cfd83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:43 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "682" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconf25n9il\",\"name\":\"testfcluster25n9il/testdbconf25n9il\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabasepb8oay\",\"attachedDatabaseNames\":[\"testdatabasepb8oay\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfbgiwc7\",\"name\":\"testfclusterbgiwc7/testdbconfbgiwc7\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabaselbfexs\",\"attachedDatabaseNames\":[\"testdatabaselbfexs\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}]}" } }, - "Get-AzKustoAttachedDatabaseConfiguration+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconf25n9il?api-version=2020-02-15+1": { + "Get-AzKustoAttachedDatabaseConfiguration+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfbgiwc7?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconf25n9il?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfbgiwc7?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "80cd763b-9755-4bcf-b31a-a28d7f38d3f4" ], + "x-ms-unique-id": [ "162" ], + "x-ms-client-request-id": [ "450bf4f0-d958-4390-a7f8-c440bab4cb17" ], "CommandName": [ "Get-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "Get-AzKustoAttachedDatabaseConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,21 +65,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "64b88a50-eae5-4c8c-b3f8-4425a0336a3c" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "c6c3c966-50c2-4442-b83b-170ef30cd98e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "994ba877-f9b3-4a23-b356-07382ec37232" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113144Z:994ba877-f9b3-4a23-b356-07382ec37232" ], + "x-ms-correlation-request-id": [ "1e9a517d-b77d-4049-b86b-78b845a02c09" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232822Z:1e9a517d-b77d-4049-b86b-78b845a02c09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:44 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconf25n9il\",\"name\":\"testfcluster25n9il/testdbconf25n9il\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabasepb8oay\",\"attachedDatabaseNames\":[\"testdatabasepb8oay\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfbgiwc7\",\"name\":\"testfclusterbgiwc7/testdbconfbgiwc7\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabaselbfexs\",\"attachedDatabaseNames\":[\"testdatabaselbfexs\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoCluster.Recording.json b/src/Kusto/test/Get-AzKustoCluster.Recording.json index 53c237eaa819..c2d20132056a 100644 --- a/src/Kusto/test/Get-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Get-AzKustoCluster.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoCluster+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+1": { + "Get-AzKustoCluster+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "150" ], - "x-ms-client-request-id": [ "da08eb29-20d1-4e94-8f7e-9178d6e399ee" ], + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "b16bed19-25e0-4c4c-8dac-2fa887c3056c" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "e4cde578-c1c1-486e-9f99-5bc72f49cd9e" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "193569f1-c639-41d0-a455-33f1642d5283" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4ea8435c-ad24-4e3a-b7e8-f89354585b0b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113144Z:4ea8435c-ad24-4e3a-b7e8-f89354585b0b" ], + "x-ms-correlation-request-id": [ "10401bc0-fe7b-4f77-b142-328577852335" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232823Z:10401bc0-fe7b-4f77-b142-328577852335" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:44 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "827" ], + "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Get-AzKustoCluster+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/clusters?api-version=2020-02-15+1": { + "Get-AzKustoCluster+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/clusters?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/clusters?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/clusters?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "151" ], - "x-ms-client-request-id": [ "bf676848-c189-4ed4-9c03-055cda4f4483" ], + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "faa135fd-4dda-46a2-a2a6-7956b3b9d471" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,22 +64,22 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "f3ef6659-7e70-40b8-8cbf-a23129c1db53" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-request-id": [ "4b42608c-3185-43aa-a720-3da4f9ea58d1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8c6f8967-92f3-44b9-90dc-a3e556cb7cb0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113145Z:8c6f8967-92f3-44b9-90dc-a3e556cb7cb0" ], + "x-ms-correlation-request-id": [ "420267a5-375a-4a8d-aebf-0aa3d53ad84c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232823Z:420267a5-375a-4a8d-aebf-0aa3d53ad84c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:44 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2371" ], + "Content-Length": [ "2464" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il\",\"name\":\"testfcluster25n9il\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testfcluster25n9il.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testfcluster25n9il.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a\",\"name\":\"testclustervmhz6a\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclustervmhz6a.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclustervmhz6a.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7\",\"name\":\"testfclusterbgiwc7\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testfclusterbgiwc7.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testfclusterbgiwc7.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4\",\"name\":\"testclusterv76dg4\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterv76dg4.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterv76dg4.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Recording.json b/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Recording.json index 677581e1c5d4..8d846953ba49 100644 --- a/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Recording.json +++ b/src/Kusto/test/Get-AzKustoClusterFollowerDatabase.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoClusterFollowerDatabase+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/listFollowerDatabases?api-version=2020-02-15+1": { + "Get-AzKustoClusterFollowerDatabase+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/listFollowerDatabases?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/listFollowerDatabases?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/listFollowerDatabases?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "152" ], - "x-ms-client-request-id": [ "773f8e99-6a2d-4ca5-986b-cf23c36e6f9a" ], + "x-ms-unique-id": [ "165" ], + "x-ms-client-request-id": [ "a3892518-b4e9-4048-b522-b09f4bd64a56" ], "CommandName": [ "Get-AzKustoClusterFollowerDatabase" ], "FullCommandName": [ "Get-AzKustoClusterFollowerDatabase_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,21 +23,21 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "19ee83ad-3928-4d88-b94d-aeb3c6cd478a" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "38769197-e8cc-4901-a69d-4de22ef0effe" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "46490677-e4b9-4ac6-90db-2d274353c219" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113145Z:46490677-e4b9-4ac6-90db-2d274353c219" ], + "x-ms-correlation-request-id": [ "b262934c-8d51-4c4f-9e45-9496d66e26ec" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232824Z:b262934c-8d51-4c4f-9e45-9496d66e26ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:45 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "263" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il\",\"attachedDatabaseConfigurationName\":\"testdbconf25n9il\",\"databaseName\":\"testdatabasepb8oay\"}]}" + "Content": "{\"value\":[{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7\",\"attachedDatabaseConfigurationName\":\"testdbconfbgiwc7\",\"databaseName\":\"testdatabaselbfexs\"}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Recording.json index a560848fabce..6cef7b1ae819 100644 --- a/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Recording.json +++ b/src/Kusto/test/Get-AzKustoClusterLanguageExtension.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoClusterLanguageExtension+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/listLanguageExtensions?api-version=2020-02-15+1": { + "Get-AzKustoClusterLanguageExtension+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/listLanguageExtensions?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/listLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/listLanguageExtensions?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "153" ], - "x-ms-client-request-id": [ "c351fd52-17a8-467c-b070-28cf3a847d65" ], + "x-ms-unique-id": [ "166" ], + "x-ms-client-request-id": [ "8e362c36-111f-4e66-9716-743eeba06f9c" ], "CommandName": [ "Get-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Get-AzKustoClusterLanguageExtension_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,14 +23,14 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "edd069de-dbc1-44cf-9c22-394278d50b42" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "f5946255-019f-46e0-ad11-10a2e11b5ca2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a99f5cd0-32b1-4fb2-a383-46fd08a64abb" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113146Z:a99f5cd0-32b1-4fb2-a383-46fd08a64abb" ], + "x-ms-correlation-request-id": [ "68c07ee2-c2a6-4f9e-9077-5158e5995f72" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232825Z:68c07ee2-c2a6-4f9e-9077-5158e5995f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:45 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "76" ], diff --git a/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Recording.json b/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Recording.json index af8c514a96b7..ef6682e54fc0 100644 --- a/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Recording.json +++ b/src/Kusto/test/Get-AzKustoClusterPrincipalAssignment.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoClusterPrincipalAssignment+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/principalAssignments?api-version=2020-02-15+1": { + "Get-AzKustoClusterPrincipalAssignment+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/principalAssignments?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/principalAssignments?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/principalAssignments?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "154" ], - "x-ms-client-request-id": [ "02b3acd8-7fc2-40e8-a72e-cecc7c32b312" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "36ba126b-5248-41b3-b222-cade2743f918" ], "CommandName": [ "Get-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Get-AzKustoClusterPrincipalAssignment_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,31 +23,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "2449f5d5-4ffa-450e-9dea-00c632c0bd45" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "6b1a3078-6c60-4185-b0a3-ec037c71e3d2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d547c099-e932-4f7c-9c93-7e7ae3def987" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113149Z:d547c099-e932-4f7c-9c93-7e7ae3def987" ], + "x-ms-correlation-request-id": [ "d2321ee5-8174-4168-89e8-1dc778f30d58" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232827Z:d2321ee5-8174-4168-89e8-1dc778f30d58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:48 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "591" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testclusterpb8oay/KustoClientsScenarioTest\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"KustoClientsScenarioTest\",\"provisioningState\":\"Succeeded\"}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testclusterlbfexs/KustoClientsScenarioTest\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"KustoClientsScenarioTest\",\"provisioningState\":\"Succeeded\"}}]}" } }, - "Get-AzKustoClusterPrincipalAssignment+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-02-15+1": { + "Get-AzKustoClusterPrincipalAssignment+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "d9180d4e-0702-4ecc-b520-53c950d82986" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "aed2f118-cb39-4eb7-978c-3317c6773312" ], "CommandName": [ "Get-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Get-AzKustoClusterPrincipalAssignment_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,21 +65,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "d6524e6f-78a9-44e5-a28c-79412c9fc649" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "b910d012-e36c-43d5-bf1f-a83218587180" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "cb37d256-046c-496a-b88e-9370f55f4328" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113149Z:cb37d256-046c-496a-b88e-9370f55f4328" ], + "x-ms-correlation-request-id": [ "9b43f6cd-0d94-4ea3-99f5-d0f8bcc50dba" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232828Z:9b43f6cd-0d94-4ea3-99f5-d0f8bcc50dba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:49 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "589" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testclusterpb8oay/KustoClientsScenarioTest\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"KustoClientsScenarioTest\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testclusterlbfexs/KustoClientsScenarioTest\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"KustoClientsScenarioTest\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoClusterSku.Recording.json b/src/Kusto/test/Get-AzKustoClusterSku.Recording.json index 5d07952b7eaa..affabdc78962 100644 --- a/src/Kusto/test/Get-AzKustoClusterSku.Recording.json +++ b/src/Kusto/test/Get-AzKustoClusterSku.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoClusterSku+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/skus?api-version=2020-02-15+1": { + "Get-AzKustoClusterSku+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/skus?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/skus?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/skus?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "156" ], - "x-ms-client-request-id": [ "170123b1-4226-45ed-bf89-64b22dceb655" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "4f156658-4f1b-41a8-abd0-5556297d444d" ], "CommandName": [ "Get-AzKustoClusterSku" ], "FullCommandName": [ "Get-AzKustoClusterSku_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -19,32 +19,32 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-request-id": [ "c61e9360-b117-4625-9856-c76787e780b6" ], - "x-ms-correlation-request-id": [ "c61e9360-b117-4625-9856-c76787e780b6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113149Z:c61e9360-b117-4625-9856-c76787e780b6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "x-ms-request-id": [ "8d792742-6310-4e3d-afd9-7dac44061c95" ], + "x-ms-correlation-request-id": [ "8d792742-6310-4e3d-afd9-7dac44061c95" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T084700Z:8d792742-6310-4e3d-afd9-7dac44061c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:49 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:46:59 GMT" ] }, "ContentHeaders": { + "Content-Length": [ "62986" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ], - "Content-Length": [ "60312" ] + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]}]}" + "Content": "{\"value\":[{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiacentral\"],\"locationInfo\":[{\"location\":\"australiacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s_v2\",\"tier\":\"Standard\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"germanywestcentral\"],\"locationInfo\":[{\"location\":\"germanywestcentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricanorth\"],\"locationInfo\":[{\"location\":\"southafricanorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southafricawest\"],\"locationInfo\":[{\"location\":\"southafricawest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"switzerlandnorth\"],\"locationInfo\":[{\"location\":\"switzerlandnorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uaenorth\"],\"locationInfo\":[{\"location\":\"uaenorth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s_v2\",\"tier\":\"Standard\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Dev(No SLA)_Standard_D11_v2\",\"tier\":\"Basic\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[\"2\",\"1\",\"3\"],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L8s_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]},{\"resourceType\":\"clusters\",\"name\":\"Standard_L16s_v2\",\"tier\":\"Standard\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[],\"zoneDetails\":[]}],\"restrictions\":[]}]}" } }, - "Get-AzKustoClusterSku+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/skus?api-version=2020-02-15+1": { + "Get-AzKustoClusterSku+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/skus?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/skus?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/skus?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "157" ], - "x-ms-client-request-id": [ "e7767674-7abd-443d-9695-5d056109e68c" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "b989b6d5-6344-483e-9ee5-af4169d3a498" ], "CommandName": [ "Get-AzKustoClusterSku" ], "FullCommandName": [ "Get-AzKustoClusterSku_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -57,25 +57,25 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-request-id": [ "94b896de-63f5-4f86-91b6-e3553122b598" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d1105f0b-a397-4d39-8d3a-44fbc7dc448b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113150Z:d1105f0b-a397-4d39-8d3a-44fbc7dc448b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-request-id": [ "69db5a0d-01b4-4595-b633-b83525d4d58b" ], + "x-ms-correlation-request-id": [ "6ddb28b5-d2c6-4307-ae13-d46c2ac66ddd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T084702Z:6ddb28b5-d2c6-4307-ae13-d46c2ac66ddd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:49 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:47:01 GMT" ], + "Set-Cookie": [ "ARRAffinity=4b8ede89fb13944eff9450222e60978f85f33ac60c86a0218535fcb40971ebd2;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "5054" ], + "Content-Length": [ "5508" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":8,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":16,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":16,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L8s_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L16s_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E2a_v4\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E4a_v4\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E8a_v4\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E16a_v4\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E8as_v4+1TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E8as_v4+2TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E16as_v4+3TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E16as_v4+4TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}}]}" + "Content": "{\"value\":[{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":8,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":16,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_D13_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_D14_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_DS13_v2+1TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_DS13_v2+2TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_DS14_v2+3TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_DS14_v2+4TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[\"useast-AZ01\",\"useast-AZ02\",\"useast-AZ03\"]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L4s\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":16,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L8s\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L16s\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L8s_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_L16s_v2\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E64i_v3\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E64is_v3+4TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E2a_v4\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E4a_v4\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E8a_v4\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E16a_v4\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E8as_v4+1TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E8as_v4+2TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E16as_v4+3TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}},{\"resourceType\":\"Microsoft.Kusto/clusters\",\"sku\":{\"name\":\"Standard_E16as_v4+4TB_PS\",\"tier\":\"Standard\",\"locationInfo\":[{\"location\":\"East US\",\"zones\":[]}]},\"capacity\":{\"minimum\":2,\"maximum\":1000,\"default\":2,\"scaleType\":\"Automatic\"}}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoClusterSku.Tests.ps1 b/src/Kusto/test/Get-AzKustoClusterSku.Tests.ps1 index 733dd39851cf..64578e1dcd06 100644 --- a/src/Kusto/test/Get-AzKustoClusterSku.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoClusterSku.Tests.ps1 @@ -14,7 +14,7 @@ while (-not $mockingPath) { Describe 'Get-AzKustoClusterSku' { It 'List' { [array]$clusterSku = Get-AzKustoClusterSku - $clusterSku.Count | Should -Be 308 + $clusterSku.Count | Should -Be 322 } It 'List1' { @@ -22,6 +22,6 @@ Describe 'Get-AzKustoClusterSku' { $clusterName = $env.clusterName [array]$clusterSku = Get-AzKustoClusterSku -ResourceGroupName $resourceGroupName -ClusterName $clusterName - $clusterSku.Count | Should -Be 21 + $clusterSku.Count | Should -Be 23 } } diff --git a/src/Kusto/test/Get-AzKustoDataConnection.Recording.json b/src/Kusto/test/Get-AzKustoDataConnection.Recording.json index 37c4364db69d..5a12a9cf5554 100644 --- a/src/Kusto/test/Get-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/Get-AzKustoDataConnection.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoDataConnection+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnections?api-version=2020-02-15+1": { + "Get-AzKustoDataConnection+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnections?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnections?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnections?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "163" ], - "x-ms-client-request-id": [ "9ca34b8b-b2b8-43c8-ac10-3e7ff622829b" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "482fb984-5cbf-418b-8773-1255b47fc474" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -19,35 +19,35 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "a726a4e7-5b3f-429c-a0ff-da5b9863b25b" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "deb57dcb-8e94-41f0-8ef8-d67c0ca8ac23" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113153Z:deb57dcb-8e94-41f0-8ef8-d67c0ca8ac23" ], + "x-ms-request-id": [ "012c60e7-8ede-430d-b7f7-897a991333f9" ], + "x-ms-correlation-request-id": [ "973a7c1e-f495-4b92-a09a-8bf90e4bed7f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T084735Z:973a7c1e-f495-4b92-a09a-8bf90e4bed7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:52 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:47:35 GMT" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "2477" ], + "Content-Length": [ "2480" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}]}" } }, - "Get-AzKustoDataConnection+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+1": { + "Get-AzKustoDataConnection+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "164" ], - "x-ms-client-request-id": [ "70e545a1-d8e5-45dd-bc03-578db95b6f74" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "11451dee-2aab-400f-95de-14b7a51f71f9" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,26 +60,26 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "bc309129-7c31-4001-81d3-445759aedb52" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "2e49acba-9b02-43be-8ba5-3633703e5dce" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113153Z:2e49acba-9b02-43be-8ba5-3633703e5dce" ], + "x-ms-request-id": [ "b1acdd57-bac0-4d48-b0ea-9287bec5af9f" ], + "x-ms-correlation-request-id": [ "3ad130cf-7b30-4a43-8777-29a08a13268a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T084737Z:3ad130cf-7b30-4a43-8777-29a08a13268a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:53 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:47:36 GMT" ], + "ETag": [ "\"\"" ], + "Set-Cookie": [ "ARRAffinity=f7346eb7f858da6fcd7c812185c78354cd9c373cd01aac1f84617587dc510a4d;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "793" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoDataConnection.Tests.ps1 b/src/Kusto/test/Get-AzKustoDataConnection.Tests.ps1 index 17de6c056198..bc4f1706aeec 100644 --- a/src/Kusto/test/Get-AzKustoDataConnection.Tests.ps1 +++ b/src/Kusto/test/Get-AzKustoDataConnection.Tests.ps1 @@ -24,9 +24,6 @@ Describe 'Get-AzKustoDataConnection' { $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" @@ -37,7 +34,7 @@ Describe 'Get-AzKustoDataConnection' { $dataConnectionCreated = $dataConnection } } - Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $tableName $tableMappingName $dataFormat $kind + Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $kind } It 'Get' { @@ -50,13 +47,10 @@ Describe 'Get-AzKustoDataConnection' { $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" $dataConnectionCreated = Get-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName - Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $tableName $tableMappingName $dataFormat $kind + Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $kind } } diff --git a/src/Kusto/test/Get-AzKustoDatabase.Recording.json b/src/Kusto/test/Get-AzKustoDatabase.Recording.json index 993c4ced80a7..c949c5b76eae 100644 --- a/src/Kusto/test/Get-AzKustoDatabase.Recording.json +++ b/src/Kusto/test/Get-AzKustoDatabase.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoDatabase+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Get-AzKustoDatabase+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "158" ], - "x-ms-client-request-id": [ "0736bd15-aaba-4469-b981-cc08d851f7b7" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "08b4f426-bc49-4634-aaa8-26dff35d3d0e" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -24,31 +24,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "75abfcaa-77c4-46ea-a6f6-6b7b76937391" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "0edd47c4-822c-4dee-a2f8-7dd9c6527c21" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6983f3cb-2a10-405d-8661-cb90b3d88964" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113150Z:6983f3cb-2a10-405d-8661-cb90b3d88964" ], + "x-ms-correlation-request-id": [ "21744b31-a3c0-40e7-9d3c-f1facd864168" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232829Z:21744b31-a3c0-40e7-9d3c-f1facd864168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:50 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Get-AzKustoDatabase+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Get-AzKustoDatabase+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "159" ], - "x-ms-client-request-id": [ "3c8d59cc-35b9-41e6-8e46-5b6f9d1e19f1" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "eb0ebe18-c569-49de-9e90-b9cd81766452" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -66,21 +66,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "09edd695-3ea3-4b01-a44c-c1ea2c62819a" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "0d4791c8-05d6-4000-9bbf-c30574c73044" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "09da13ba-b0f4-4239-aea0-9ba37951b78a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113151Z:09da13ba-b0f4-4239-aea0-9ba37951b78a" ], + "x-ms-correlation-request-id": [ "dad0ea60-ea55-4993-8c69-05e44abfaa1b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232830Z:dad0ea60-ea55-4993-8c69-05e44abfaa1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:50 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Get-AzKustoDatabasePrincipal.Recording.json b/src/Kusto/test/Get-AzKustoDatabasePrincipal.Recording.json index 7261bc2b75f6..f1cf47f4e3c5 100644 --- a/src/Kusto/test/Get-AzKustoDatabasePrincipal.Recording.json +++ b/src/Kusto/test/Get-AzKustoDatabasePrincipal.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoDatabasePrincipal+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/listPrincipals?api-version=2020-02-15+1": { + "Get-AzKustoDatabasePrincipal+[NoContext]+List+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/listPrincipals?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/listPrincipals?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/listPrincipals?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "160" ], - "x-ms-client-request-id": [ "9b2db04d-947c-4623-847b-ccd64b8edbe3" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "69cb9624-f239-42d2-8180-4f274566e1f0" ], "CommandName": [ "Get-AzKustoDatabasePrincipal" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipal_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,14 +23,14 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "83dcf082-c118-4391-a235-11fb5a4eec5a" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "b557cad7-e7dd-4fa5-a771-594287390c3c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7888818e-7742-466a-96ee-62d056401d07" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113151Z:7888818e-7742-466a-96ee-62d056401d07" ], + "x-ms-correlation-request-id": [ "b73d6814-3630-4bbd-ab4e-e9094eef153c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232831Z:b73d6814-3630-4bbd-ab4e-e9094eef153c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:51 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "459" ], diff --git a/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json index d8a1f83f32ea..88025cf90e7c 100644 --- a/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json +++ b/src/Kusto/test/Get-AzKustoDatabasePrincipalAssignment.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzKustoDatabasePrincipalAssignment+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/principalAssignments?api-version=2020-02-15+1": { + "Get-AzKustoDatabasePrincipalAssignment+[NoContext]+List+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/principalAssignments?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/principalAssignments?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/principalAssignments?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "161" ], - "x-ms-client-request-id": [ "0d17611c-e928-4c59-9fc8-6ce8d3f81a41" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "edb14e08-0ace-4c8c-802a-7d626db4e148" ], "CommandName": [ "Get-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipalAssignment_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,31 +23,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "346fe8e7-32e4-4c8e-8724-b4223fae229b" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "59ae7e6b-ef8e-4161-a7cd-aecbdff43c30" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e3920469-6dfa-4e9a-b08d-a64005ca0130" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113152Z:e3920469-6dfa-4e9a-b08d-a64005ca0130" ], + "x-ms-correlation-request-id": [ "d653a1f6-0968-4036-9f57-e75d5eb6a957" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232831Z:d653a1f6-0968-4036-9f57-e75d5eb6a957" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:51 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1260" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/8b4b0dfa-f12a-4224-a99e-91f83d3c8e57\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/8b4b0dfa-f12a-4224-a99e-91f83d3c8e57\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"roshauli@microsoft.com\",\"role\":\"Admin\",\"principalType\":\"User\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"Royi Shauli\",\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/KustoClientsScenarioTest\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"KustoClientsScenarioTest\",\"provisioningState\":\"Succeeded\"}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/KustoClientsScenarioTest\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"KustoClientsScenarioTest\",\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/2b909eee-9592-4a00-83e3-d7c624791e88\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/2b909eee-9592-4a00-83e3-d7c624791e88\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"roshauli@microsoft.com\",\"role\":\"Admin\",\"principalType\":\"User\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"Royi Shauli\",\"provisioningState\":\"Succeeded\"}}]}" } }, - "Get-AzKustoDatabasePrincipalAssignment+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-02-15+1": { + "Get-AzKustoDatabasePrincipalAssignment+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/KustoClientsScenarioTest?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "162" ], - "x-ms-client-request-id": [ "df30db61-b7d2-40ce-a3ef-a4a1b3c2d9c9" ], + "x-ms-unique-id": [ "175" ], + "x-ms-client-request-id": [ "aef22fe6-8880-4219-b5f9-a0fdb4994096" ], "CommandName": [ "Get-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipalAssignment_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,21 +65,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "cc9d74db-12de-4bcd-af22-5e9f9a8d80fd" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "a7122dd5-6735-4379-b740-23e2bfd8bb24" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7f8f239a-62cb-49de-84d6-062f87402d0e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113152Z:7f8f239a-62cb-49de-84d6-062f87402d0e" ], + "x-ms-correlation-request-id": [ "eb274518-8789-4391-8029-485a4cb97e17" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T232832Z:eb274518-8789-4391-8029-485a4cb97e17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:52 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:28:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "635" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/KustoClientsScenarioTest\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"KustoClientsScenarioTest\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/KustoClientsScenarioTest\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/KustoClientsScenarioTest\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"KustoClientsScenarioTest\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json index b37fc8a46b3a..2ed046050f7f 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Recording.json @@ -1,120 +1,366 @@ { - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionpb8oayi6wlsf\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionlbfexssu8yho\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "532" ] + "Content-Length": [ "430" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d874f725-1b71-4607-850a-e1bd09d064da" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "588317e6-e1b8-48c0-a794-08030449cef1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085242Z:588317e6-e1b8-48c0-a794-08030449cef1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:52:41 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2" ], + "x-ms-client-request-id": [ "68e4e920-cb27-4bf0-8608-39fad9476a6b", "68e4e920-cb27-4bf0-8608-39fad9476a6b" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { "StatusCode": 200, "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "bd97e401-c7c8-40ab-bae2-16e38b829eff" ], + "x-ms-correlation-request-id": [ "74bde7c9-1794-4688-85ef-86a02c32142b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085313Z:74bde7c9-1794-4688-85ef-86a02c32142b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:12 GMT" ], + "Set-Cookie": [ "ARRAffinity=0ae556891a90acc8679c889b07dda3bbe88c7f0787602304c159f63d4e13032a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "447" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3d000c30-2641-4d89-bb35-4ffdc547d628\",\"name\":\"3d000c30-2641-4d89-bb35-4ffdc547d628\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:52:42.6726636Z\",\"endTime\":\"2020-08-04T08:52:46.001129Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3d000c30-2641-4d89-bb35-4ffdc547d628?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "1", "2", "3" ], + "x-ms-client-request-id": [ "68e4e920-cb27-4bf0-8608-39fad9476a6b", "68e4e920-cb27-4bf0-8608-39fad9476a6b", "68e4e920-cb27-4bf0-8608-39fad9476a6b" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-request-id": [ "e691b027-ec4d-4247-a077-9dfadfd97c75" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f7e5ced3-d942-4513-8b79-8ce1595c3a58" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113155Z:f7e5ced3-d942-4513-8b79-8ce1595c3a58" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "f0c4c536-6d80-4ab8-b5e6-2801371671c4" ], + "x-ms-correlation-request-id": [ "32af3b83-412d-4164-9c70-82e602c4b1ed" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085313Z:32af3b83-412d-4164-9c70-82e602c4b1ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:55 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:13 GMT" ], + "Set-Cookie": [ "ARRAffinity=3966815c1735e25eacb9e7fcb3ffb349f6996faf94adcbc3ff049af8f9f3a62b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { "Content-Length": [ "103" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionpb8oayaxb9i7\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionlbfexsr4qwo8\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "687" ] + "Content-Length": [ "585" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "876d451b-e426-4eb4-ad28-dc2f3e318e26" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "7dc072de-3d2a-42c6-8c58-8069f9077d57" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085314Z:7dc072de-3d2a-42c6-8c58-8069f9077d57" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:14 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=4b8ede89fb13944eff9450222e60978f85f33ac60c86a0218535fcb40971ebd2;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4", "5" ], + "x-ms-client-request-id": [ "41337011-0439-4928-9c32-4532ed2c23a8", "41337011-0439-4928-9c32-4532ed2c23a8" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { "StatusCode": 200, "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-request-id": [ "f5b0d5cb-a6ef-4f00-b6a4-60c37f6099ca" ], + "x-ms-correlation-request-id": [ "55ff724a-48d9-40df-bbe7-6339c04859e3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085344Z:55ff724a-48d9-40df-bbe7-6339c04859e3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:44 GMT" ], + "Set-Cookie": [ "ARRAffinity=77ee763401c16af822f39e89c993c4c46db2cd634774c80e4236e79461b79395;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "509" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f06b590e-980a-4a54-84ce-b8a75f648cc2\",\"name\":\"f06b590e-980a-4a54-84ce-b8a75f648cc2\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:53:14.2474725Z\",\"endTime\":\"2020-08-04T08:53:16.4977188Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"},{\"ErrorMessage\":\"BlobStorageEventType {0} is not supported\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f06b590e-980a-4a54-84ce-b8a75f648cc2?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4", "5", "6" ], + "x-ms-client-request-id": [ "41337011-0439-4928-9c32-4532ed2c23a8", "41337011-0439-4928-9c32-4532ed2c23a8", "41337011-0439-4928-9c32-4532ed2c23a8" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-request-id": [ "7d818603-6e92-4240-bcd1-593d833f3c1c" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bef95374-8c6e-457e-b1bb-8446fbb5f8d0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113158Z:bef95374-8c6e-457e-b1bb-8446fbb5f8d0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], + "x-ms-request-id": [ "4fe86519-6a29-4b0c-93f5-aa6e4eb3db2f" ], + "x-ms-correlation-request-id": [ "b184eeb5-1a73-47db-a1a0-23682aa220b1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085344Z:b184eeb5-1a73-47db-a1a0-23682aa220b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:57 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:44 GMT" ], + "Set-Cookie": [ "ARRAffinity=7af73990d8c71bc2771b421e489b49b46347d66c21cd7ad1e741334df7cd91e4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "103" ], + "Content-Length": [ "164" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"},{\"ErrorMessage\":\"BlobStorageEventType {0} is not supported\"}]}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionpb8oay2tmpqx\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\r\n \"sharedAccessPolicyName\": \"registryRead\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionlbfexswmcyao\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "514" ] + "Content-Length": [ "412" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "0f3213ef-6fa5-4fb4-a478-baa4746ecdb7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "63ce153a-d22c-4d43-9a3c-f54cfffd6681" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085345Z:63ce153a-d22c-4d43-9a3c-f54cfffd6681" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:53:45 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "7", "8" ], + "x-ms-client-request-id": [ "7c384158-741b-49c5-9186-e4a92de99c45", "7c384158-741b-49c5-9186-e4a92de99c45" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { "StatusCode": 200, "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], + "x-ms-request-id": [ "6057af53-6b73-4b90-af43-728e6a81693e" ], + "x-ms-correlation-request-id": [ "90490b1b-0dfe-417b-8d30-179913a5dd04" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085415Z:90490b1b-0dfe-417b-8d30-179913a5dd04" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:15 GMT" ], + "Set-Cookie": [ "ARRAffinity=7af73990d8c71bc2771b421e489b49b46347d66c21cd7ad1e741334df7cd91e4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "448" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/85215b39-710d-4d32-9a3e-d8baf1e34afe\",\"name\":\"85215b39-710d-4d32-9a3e-d8baf1e34afe\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:53:45.3966282Z\",\"endTime\":\"2020-08-04T08:53:46.9904615Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/85215b39-710d-4d32-9a3e-d8baf1e34afe?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "7", "8", "9" ], + "x-ms-client-request-id": [ "7c384158-741b-49c5-9186-e4a92de99c45", "7c384158-741b-49c5-9186-e4a92de99c45", "7c384158-741b-49c5-9186-e4a92de99c45" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data", "Invoke-AzKustoDataConnectionValidation_Data" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-request-id": [ "065cc623-9ecb-48b0-a0a1-0c1d51bb1c1e" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e8f74d67-19de-43df-8d46-59ca18bc7bb3" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113159Z:e8f74d67-19de-43df-8d46-59ca18bc7bb3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], + "x-ms-request-id": [ "fc5416c5-597a-4cf5-ac91-cd523c77b1bf" ], + "x-ms-correlation-request-id": [ "64298fdc-0f52-47d7-9498-ff753743403b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085415Z:64298fdc-0f52-47d7-9498-ff753743403b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:58 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:15 GMT" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { "Content-Length": [ "103" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "168" ], - "x-ms-client-request-id": [ "19b14047-752d-4329-8a9a-50d4886c3d89" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "8a0c7585-e37e-4f9e-b23b-d4d52b16b270" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -127,72 +373,154 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "3eb57594-a74b-4762-97e2-8c5ecae7abed" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b21d5d1f-6ab0-4cd9-91ac-3a7889894e83" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113159Z:b21d5d1f-6ab0-4cd9-91ac-3a7889894e83" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "9dc6ed82-555a-4d37-a70b-9d560b3ad329" ], + "x-ms-correlation-request-id": [ "7d0a3f88-1ac7-4792-96f3-08dade5723a4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085416Z:7d0a3f88-1ac7-4792-96f3-08dade5723a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:31:58 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:15 GMT" ], + "ETag": [ "\"\"" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionpb8oayi6wlsf\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionlbfexssu8yho\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "532" ] + "Content-Length": [ "430" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3070ebf7-e3ad-4f72-a427-51af1b47ce4e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "b0df40e0-f14f-4ecb-8e15-bab865fb41ad" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085416Z:b0df40e0-f14f-4ecb-8e15-bab865fb41ad" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:16 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=3899a4c246ab409ce24157990cab89a709e4705f2b410d297e106a90486cd1f4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "11", "12" ], + "x-ms-client-request-id": [ "02df34ae-4a8b-4ca0-b365-e9e377558c94", "02df34ae-4a8b-4ca0-b365-e9e377558c94" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { "StatusCode": 200, "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], + "x-ms-request-id": [ "75dc69ea-fd9c-4e33-a76e-eb0110017996" ], + "x-ms-correlation-request-id": [ "59f8c5e3-ed03-40e8-84ac-ad96996b9f5d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085447Z:59f8c5e3-ed03-40e8-84ac-ad96996b9f5d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:46 GMT" ], + "Set-Cookie": [ "ARRAffinity=3899a4c246ab409ce24157990cab89a709e4705f2b410d297e106a90486cd1f4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "448" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7040641a-f000-4aad-b23f-553517d97781\",\"name\":\"7040641a-f000-4aad-b23f-553517d97781\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:54:16.9122436Z\",\"endTime\":\"2020-08-04T08:54:19.5687913Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7040641a-f000-4aad-b23f-553517d97781?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "11", "12", "13" ], + "x-ms-client-request-id": [ "02df34ae-4a8b-4ca0-b365-e9e377558c94", "02df34ae-4a8b-4ca0-b365-e9e377558c94", "02df34ae-4a8b-4ca0-b365-e9e377558c94" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-request-id": [ "702f48c3-eb34-4ee3-b731-ff2bd1ccdf65" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e1e975ce-35de-49d1-b42c-0cd0ee970df6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113201Z:e1e975ce-35de-49d1-b42c-0cd0ee970df6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], + "x-ms-request-id": [ "af45b9f4-c812-48c8-8d2b-be5790012e63" ], + "x-ms-correlation-request-id": [ "141dcd9a-a13c-476c-a69f-ec0f9ab2fe87" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085447Z:141dcd9a-a13c-476c-a69f-ec0f9ab2fe87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:00 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:46 GMT" ], + "Set-Cookie": [ "ARRAffinity=67658d3126ddf9428e4e2f36f09e574385ff742ffab2b8dcad942ecc1f8fdb67;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { "Content-Length": [ "103" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "460a1d93-ba3d-43d8-bbb8-5c7762f3d4df" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "84a194a8-297d-4dbb-a30c-d56398ce7f2c" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -205,72 +533,154 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "c10547a9-ea9c-4949-9c35-63bce65d3325" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3db266c7-8295-4434-9dc6-b0d8aaf92060" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113201Z:3db266c7-8295-4434-9dc6-b0d8aaf92060" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "395d85fb-a2da-4659-9c26-5b7642c44974" ], + "x-ms-correlation-request-id": [ "57b43f08-22ff-42c0-8126-c6a87ddc8ec9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085448Z:57b43f08-22ff-42c0-8126-c6a87ddc8ec9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:00 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:47 GMT" ], + "ETag": [ "\"\"" ], + "Set-Cookie": [ "ARRAffinity=77ee763401c16af822f39e89c993c4c46db2cd634774c80e4236e79461b79395;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionpb8oayaxb9i7\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionlbfexsr4qwo8\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "687" ] + "Content-Length": [ "585" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "992723cf-6a8a-436e-85d2-c6f323e86fb6" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "421770d4-9b50-4ceb-88dc-02f3d46a3cbf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085449Z:421770d4-9b50-4ceb-88dc-02f3d46a3cbf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:54:48 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=7af73990d8c71bc2771b421e489b49b46347d66c21cd7ad1e741334df7cd91e4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "15", "16" ], + "x-ms-client-request-id": [ "4a424c69-28c5-48a4-8898-9a735ed8ae4d", "4a424c69-28c5-48a4-8898-9a735ed8ae4d" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { "StatusCode": 200, "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], + "x-ms-request-id": [ "abd8c22a-b55c-4b68-bede-457c00d2b14a" ], + "x-ms-correlation-request-id": [ "dbb1d4f8-5546-4db6-a34c-a064abe5ecee" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085519Z:dbb1d4f8-5546-4db6-a34c-a064abe5ecee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:55:19 GMT" ], + "Set-Cookie": [ "ARRAffinity=7af73990d8c71bc2771b421e489b49b46347d66c21cd7ad1e741334df7cd91e4;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "509" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b3096902-5e5e-4d2a-a669-03ebdf3e532e\",\"name\":\"b3096902-5e5e-4d2a-a669-03ebdf3e532e\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:54:49.1078078Z\",\"endTime\":\"2020-08-04T08:54:52.1236194Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"},{\"ErrorMessage\":\"BlobStorageEventType {0} is not supported\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b3096902-5e5e-4d2a-a669-03ebdf3e532e?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "15", "16", "17" ], + "x-ms-client-request-id": [ "4a424c69-28c5-48a4-8898-9a735ed8ae4d", "4a424c69-28c5-48a4-8898-9a735ed8ae4d", "4a424c69-28c5-48a4-8898-9a735ed8ae4d" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-request-id": [ "d74200eb-40fc-4ef4-89e4-8d1820c5698a" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a17381b8-8c8a-4450-9ca7-da2b98572e30" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113203Z:a17381b8-8c8a-4450-9ca7-da2b98572e30" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], + "x-ms-request-id": [ "e0088e37-c943-46e6-8862-1716ec5df03d" ], + "x-ms-correlation-request-id": [ "0b7e32c1-ac64-4e7a-a002-78b47049d239" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085519Z:0b7e32c1-ac64-4e7a-a002-78b47049d239" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:02 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:55:19 GMT" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { - "Content-Length": [ "103" ], + "Content-Length": [ "164" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"},{\"ErrorMessage\":\"BlobStorageEventType {0} is not supported\"}]}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "e9919a4d-44b3-4b21-a0a0-adf618f12ac8" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "676e6aeb-a8e1-4bb1-8ade-c87d57f390b0" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -283,62 +693,144 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-request-id": [ "513b78d9-79ac-4424-8e36-a3b59a994342" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b6a8203a-5a79-476e-8b33-742f9d112eb6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113203Z:b6a8203a-5a79-476e-8b33-742f9d112eb6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], + "x-ms-request-id": [ "9ec87e1d-3e92-4e81-b72c-03fe4a98d0ba" ], + "x-ms-correlation-request-id": [ "1e5c9888-5caf-4166-b0d2-2d6f219efa7c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085520Z:1e5c9888-5caf-4166-b0d2-2d6f219efa7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:03 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:55:19 GMT" ], + "ETag": [ "\"\"" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15+2": { + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/dataConnectionValidation?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionpb8oay2tmpqx\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/dataConnectionValidation?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\r\n \"sharedAccessPolicyName\": \"registryRead\"\r\n }\r\n },\r\n \"dataConnectionName\": \"testdataconnectionlbfexswmcyao\"\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "514" ] + "Content-Length": [ "412" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "265309f0-c625-44b4-b27f-615e048cd5de" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "3cbbf318-edaa-44bf-b0a2-82f8a0a48208" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085520Z:3cbbf318-edaa-44bf-b0a2-82f8a0a48208" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:55:20 GMT" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Set-Cookie": [ "ARRAffinity=f7346eb7f858da6fcd7c812185c78354cd9c373cd01aac1f84617587dc510a4d;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "19", "20" ], + "x-ms-client-request-id": [ "f43ecf37-33d6-40b2-a158-9468e546d5d3", "f43ecf37-33d6-40b2-a158-9468e546d5d3" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { } }, "Response": { "StatusCode": 200, "Headers": { + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "8d04828e-772e-4fc8-8d9a-6a8bfb29f494" ], + "x-ms-correlation-request-id": [ "3f8c04aa-902c-4fc3-aef9-5b7567f0237c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085550Z:3f8c04aa-902c-4fc3-aef9-5b7567f0237c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:55:50 GMT" ], + "Set-Cookie": [ "ARRAffinity=67658d3126ddf9428e4e2f36f09e574385ff742ffab2b8dcad942ecc1f8fdb67;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] + }, + "ContentHeaders": { + "Content-Length": [ "448" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/a8bd2228-0178-446b-b1b8-264ea2f65f54\",\"name\":\"a8bd2228-0178-446b-b1b8-264ea2f65f54\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-04T08:55:20.6505866Z\",\"endTime\":\"2020-08-04T08:55:22.6523747Z\",\"percentComplete\":1.0,\"properties\":{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}}" + } + }, + "Invoke-AzKustoDataConnectionValidation+[NoContext]+DataViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14\u0026operationResultResponseType=Location+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/a8bd2228-0178-446b-b1b8-264ea2f65f54?api-version=2020-06-14\u0026operationResultResponseType=Location", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "19", "20", "21" ], + "x-ms-client-request-id": [ "f43ecf37-33d6-40b2-a158-9468e546d5d3", "f43ecf37-33d6-40b2-a158-9468e546d5d3", "f43ecf37-33d6-40b2-a158-9468e546d5d3" ], + "CommandName": [ "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation", "Az.Kusto.internal\\Invoke-AzKustoDataConnectionValidation" ], + "FullCommandName": [ "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity", "Invoke-AzKustoDataConnectionValidation_DataViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-request-id": [ "f99da25a-bed6-4a34-a80c-c711e9340eeb" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "181b244f-9552-4d63-a58a-de84c70e2bd2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113204Z:181b244f-9552-4d63-a58a-de84c70e2bd2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "47d981fe-3d3a-4dc1-9208-29c25f5597c1" ], + "x-ms-correlation-request-id": [ "e75c2f06-2f0e-41fe-8f80-1b9ebd982d60" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200804T085551Z:e75c2f06-2f0e-41fe-8f80-1b9ebd982d60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:03 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 04 Aug 2020 08:55:50 GMT" ], + "Set-Cookie": [ "ARRAffinity=77ee763401c16af822f39e89c993c4c46db2cd634774c80e4236e79461b79395;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ] }, "ContentHeaders": { "Content-Length": [ "103" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"errorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" + "Content": "{\"Value\":[{\"ErrorMessage\":\"event hub resource id and consumer group tuple provided are already used\"}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 index 31dc0c94c801..e4d7e972b6af 100644 --- a/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 +++ b/src/Kusto/test/Invoke-AzKustoDataConnectionValidation.Tests.ps1 @@ -24,13 +24,9 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" } | Should -Not -Throw } It 'DataExpandedEventGrid' { @@ -45,13 +41,9 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" $storageAccountName = $env.storageName $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageAccountName" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventGrid" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' } | Should -Not -Throw } It 'DataExpandedIotHub' { @@ -64,13 +56,9 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $iothubName = $env.iothubName $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" $sharedAccessPolicyName = $env.iothubSharedAccessPolicyName - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "IotHub" - $validationResult = Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' } | Should -Not -Throw } It 'DataViaIdentityExpandedEventHub' { @@ -83,14 +71,10 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName - $validationResult = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" } | Should -Not -Throw } It 'DataViaIdentityExpandedEventGrid' { @@ -105,14 +89,10 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" $storageAccountName = $env.storageName $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageAccountName" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventGrid" $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName - $validationResult = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' } | Should -Not -Throw } It 'DataViaIdentityExpandedIotHub' { @@ -125,13 +105,9 @@ Describe 'Invoke-AzKustoDataConnectionValidation' { $iothubName = $env.iothubName $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" $sharedAccessPolicyName = $env.iothubSharedAccessPolicyName - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "IotHub" $database = Get-AzKustoDatabase -ResourceGroupName $resourceGroupName -ClusterName $clusterName -Name $databaseName - $validationResult = Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - $validationResult.errorMessage | Should Be "event hub resource id and consumer group tuple provided are already used" + { Invoke-AzKustoDataConnectionValidation -InputObject $database -DataConnectionName $dataConnectionName -Location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' } | Should -Not -Throw } } diff --git a/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json b/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json index 8397c089890c..442acfc348af 100644 --- a/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDetachClusterFollowerDatabase.Recording.json @@ -1,8 +1,8 @@ { - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+1": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\"\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "0796ae09-3934-488c-bc8e-2f5fed6c9214" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/694679f3-55ee-4bac-9ccb-bce0b92c17ed?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "72fc9ad9-d13f-4d2e-bc4a-9968eb48dfde" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/82ada4f4-1aa0-457a-8305-6b4b0def0126?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "0c8a3f25-f41e-4811-a747-a9f2e4c93d7f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113205Z:0c8a3f25-f41e-4811-a747-a9f2e4c93d7f" ], + "x-ms-correlation-request-id": [ "159a1dc1-9a72-43a2-af9e-33870e57a13c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233352Z:159a1dc1-9a72-43a2-af9e-33870e57a13c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:33:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf\",\"name\":\"testclusterpb8oay/testdatabasei6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho\",\"name\":\"testclusterlbfexs/testdatabasesu8yho\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/694679f3-55ee-4bac-9ccb-bce0b92c17ed?api-version=2020-02-15+2": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/82ada4f4-1aa0-457a-8305-6b4b0def0126?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/694679f3-55ee-4bac-9ccb-bce0b92c17ed?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/82ada4f4-1aa0-457a-8305-6b4b0def0126?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175" ], - "x-ms-client-request-id": [ "7951566c-4620-402e-9d42-1d8f21f6e329", "7951566c-4620-402e-9d42-1d8f21f6e329" ], + "x-ms-unique-id": [ "202", "203" ], + "x-ms-client-request-id": [ "1bae96fb-f9a1-455a-9153-de90a60efdee", "1bae96fb-f9a1-455a-9153-de90a60efdee" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "c2a616ec-8e87-4d6f-9546-fde069818903" ], - "x-ms-request-id": [ "01fe4034-5c41-4b8f-9885-efaa5e0c00ef" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "fb54f66a-95de-452c-a435-5c335934859b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113235Z:c2a616ec-8e87-4d6f-9546-fde069818903" ], + "x-ms-correlation-request-id": [ "c2e54212-c0a9-49ba-afad-d064a7e79646" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233423Z:c2e54212-c0a9-49ba-afad-d064a7e79646" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:35 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:34:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/694679f3-55ee-4bac-9ccb-bce0b92c17ed\",\"name\":\"694679f3-55ee-4bac-9ccb-bce0b92c17ed\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:32:05.1713034Z\",\"endTime\":\"2020-05-07T11:32:06.9839329Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"4ddae3ee-02be-4bc8-91e6-01fcaa50cad5\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/82ada4f4-1aa0-457a-8305-6b4b0def0126\",\"name\":\"82ada4f4-1aa0-457a-8305-6b4b0def0126\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:33:52.6486087Z\",\"endTime\":\"2020-08-02T23:33:54.7267715Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"391b8b80-a1ed-43e9-918b-bd39cd2b7a4f\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+3": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "174", "175", "176" ], - "x-ms-client-request-id": [ "7951566c-4620-402e-9d42-1d8f21f6e329", "7951566c-4620-402e-9d42-1d8f21f6e329", "7951566c-4620-402e-9d42-1d8f21f6e329" ], + "x-ms-unique-id": [ "202", "203", "204" ], + "x-ms-client-request-id": [ "1bae96fb-f9a1-455a-9153-de90a60efdee", "1bae96fb-f9a1-455a-9153-de90a60efdee", "1bae96fb-f9a1-455a-9153-de90a60efdee" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -101,29 +101,29 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], - "x-ms-request-id": [ "76df8660-be9d-460e-be0c-12656b140869" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], + "x-ms-request-id": [ "b656a980-4777-4886-a06b-b639162f9bb5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "374658f6-47b1-40aa-a8aa-32e900a5420b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113236Z:374658f6-47b1-40aa-a8aa-32e900a5420b" ], + "x-ms-correlation-request-id": [ "524b0895-66ad-4322-a620-02927347d6c7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233423Z:524b0895-66ad-4322-a620-02927347d6c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:36 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:34:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "471" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf\",\"name\":\"testclusterpb8oay/testdatabasei6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho\",\"name\":\"testclusterlbfexs/testdatabasesu8yho\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf?api-version=2020-02-15+4": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\r\n \"databaseName\": \"testdatabasei6wlsf\",\r\n \"defaultPrincipalsModificationKind\": \"Union\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\r\n \"databaseName\": \"testdatabasesu8yho\",\r\n \"defaultPrincipalsModificationKind\": \"Union\"\r\n },\r\n \"location\": \"East US\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -137,33 +137,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "c1512784-d812-4db0-a0f8-ea2428cbdbaa" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c432a461-0fde-43be-a6ee-475c16b7e47a?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "4f7db61e-ff55-4644-8061-72aa612c285d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58774ed6-08d8-4589-96be-36fdf9bcc7bd?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "829c9f52-01f8-4112-8729-b4722ec3b055" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113236Z:829c9f52-01f8-4112-8729-b4722ec3b055" ], + "x-ms-correlation-request-id": [ "99c0f6cc-d324-494d-857b-087645d1a78f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233424Z:99c0f6cc-d324-494d-857b-087645d1a78f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:32:36 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:34:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "622" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf\",\"name\":\"testfcluster25n9il/testdbconfi6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabasei6wlsf\",\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho\",\"name\":\"testfclusterbgiwc7/testdbconfsu8yho\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabasesu8yho\",\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Creating\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/c432a461-0fde-43be-a6ee-475c16b7e47a?api-version=2020-02-15+5": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58774ed6-08d8-4589-96be-36fdf9bcc7bd?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/c432a461-0fde-43be-a6ee-475c16b7e47a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58774ed6-08d8-4589-96be-36fdf9bcc7bd?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "177", "178" ], - "x-ms-client-request-id": [ "5c88619f-9e42-45ba-9e20-c0098a276526", "5c88619f-9e42-45ba-9e20-c0098a276526" ], + "x-ms-unique-id": [ "205", "206" ], + "x-ms-client-request-id": [ "b6253c4c-afc1-488e-8a57-814deec8bace", "b6253c4c-afc1-488e-8a57-814deec8bace" ], "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -179,32 +179,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], + "x-ms-correlation-request-id": [ "c1621ff4-d04d-4678-b040-9b70117ff576" ], + "x-ms-request-id": [ "dece4157-5e7a-4013-9fe2-f8e29007bedc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "f1ec28cd-f384-42e4-8d4a-52edec4a9900" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3fd88398-83c7-4510-a6e8-9b37d6de4f73" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113307Z:3fd88398-83c7-4510-a6e8-9b37d6de4f73" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233454Z:c1621ff4-d04d-4678-b040-9b70117ff576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:06 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:34:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "471" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/c432a461-0fde-43be-a6ee-475c16b7e47a\",\"name\":\"c432a461-0fde-43be-a6ee-475c16b7e47a\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:32:36.69303Z\",\"endTime\":\"2020-05-07T11:32:40.21391Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"dab335fa-0e01-4513-8c66-3e25ad63cd7a\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58774ed6-08d8-4589-96be-36fdf9bcc7bd\",\"name\":\"58774ed6-08d8-4589-96be-36fdf9bcc7bd\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:34:24.1196154Z\",\"endTime\":\"2020-08-02T23:34:26.0885285Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"e1e82584-a29f-43d9-aba8-dbcd3ab06e22\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf?api-version=2020-02-15+6": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "177", "178", "179" ], - "x-ms-client-request-id": [ "5c88619f-9e42-45ba-9e20-c0098a276526", "5c88619f-9e42-45ba-9e20-c0098a276526", "5c88619f-9e42-45ba-9e20-c0098a276526" ], + "x-ms-unique-id": [ "205", "206", "207" ], + "x-ms-client-request-id": [ "b6253c4c-afc1-488e-8a57-814deec8bace", "b6253c4c-afc1-488e-8a57-814deec8bace", "b6253c4c-afc1-488e-8a57-814deec8bace" ], "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -221,29 +221,29 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "e6d9e5e9-e05b-4cdb-8a64-bb61ee2c4f02" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "507a6811-fb62-472a-8246-d4dff836a0cc" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "21facee6-95f5-4265-bc93-948fd48e7fc8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113307Z:21facee6-95f5-4265-bc93-948fd48e7fc8" ], + "x-ms-correlation-request-id": [ "64cddc75-9f58-40a2-a694-150172f1408a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233455Z:64cddc75-9f58-40a2-a694-150172f1408a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:06 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:34:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf\",\"name\":\"testfcluster25n9il/testdbconfi6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabasei6wlsf\",\"attachedDatabaseNames\":[\"testdatabasei6wlsf\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho\",\"name\":\"testfclusterbgiwc7/testdbconfsu8yho\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabasesu8yho\",\"attachedDatabaseNames\":[\"testdatabasesu8yho\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/detachFollowerDatabases?api-version=2020-02-15+7": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/detachFollowerDatabases?api-version=2020-06-14+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/detachFollowerDatabases?api-version=2020-02-15", - "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfi6wlsf\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/detachFollowerDatabases?api-version=2020-06-14", + "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfsu8yho\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -256,17 +256,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/951ed91c-f51d-4929-9f15-db08a2de3c74?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "5aad764d-5110-4070-99d4-32dcc72bcfb3" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/951ed91c-f51d-4929-9f15-db08a2de3c74?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/141e3daa-3da9-41b6-b487-89ad2972a64e?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "2976a82d-8109-4a04-996c-fa00cca5637c" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/141e3daa-3da9-41b6-b487-89ad2972a64e?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-correlation-request-id": [ "0ffcfb47-0877-4631-895e-bd4439489778" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113307Z:0ffcfb47-0877-4631-895e-bd4439489778" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-correlation-request-id": [ "71befd02-e348-4e90-9ec0-67ddac844fa2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233455Z:71befd02-e348-4e90-9ec0-67ddac844fa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:07 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:34:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -275,14 +275,14 @@ "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/951ed91c-f51d-4929-9f15-db08a2de3c74?api-version=2020-02-15+8": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/141e3daa-3da9-41b6-b487-89ad2972a64e?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/951ed91c-f51d-4929-9f15-db08a2de3c74?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/141e3daa-3da9-41b6-b487-89ad2972a64e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "180", "181" ], - "x-ms-client-request-id": [ "4267fbeb-0f7f-48af-93df-809f95ed3034", "4267fbeb-0f7f-48af-93df-809f95ed3034" ], + "x-ms-unique-id": [ "208", "209" ], + "x-ms-client-request-id": [ "80b25d1f-6651-4d7e-8d4c-86d27bd04fe4", "80b25d1f-6651-4d7e-8d4c-86d27bd04fe4" ], "CommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase" ], "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -298,32 +298,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "50c3d3b6-c169-4201-8d23-4b913b48c31d" ], - "x-ms-request-id": [ "6b26135e-39ba-4724-816f-2df67ea134cc" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "1da64147-71b1-4a1f-a97f-7c692a238619" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113337Z:50c3d3b6-c169-4201-8d23-4b913b48c31d" ], + "x-ms-correlation-request-id": [ "02ccb368-0cba-46ee-a478-d9d557f715a5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233525Z:02ccb368-0cba-46ee-a478-d9d557f715a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:37 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:35:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/951ed91c-f51d-4929-9f15-db08a2de3c74\",\"name\":\"951ed91c-f51d-4929-9f15-db08a2de3c74\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:33:07.6351095Z\",\"endTime\":\"2020-05-07T11:33:09.6976358Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"163ea199-8537-4985-b04b-93e9aa4b5a44\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/141e3daa-3da9-41b6-b487-89ad2972a64e\",\"name\":\"141e3daa-3da9-41b6-b487-89ad2972a64e\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:34:55.6613264Z\",\"endTime\":\"2020-08-02T23:34:58.5834461Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"b3ad2aca-67fb-4a4b-89f9-9c0fa98ea8e9\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/951ed91c-f51d-4929-9f15-db08a2de3c74?api-version=2020-02-15\u0026operationResultResponseType=Location+9": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/141e3daa-3da9-41b6-b487-89ad2972a64e?api-version=2020-06-14\u0026operationResultResponseType=Location+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/951ed91c-f51d-4929-9f15-db08a2de3c74?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/141e3daa-3da9-41b6-b487-89ad2972a64e?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "180", "181", "182" ], - "x-ms-client-request-id": [ "4267fbeb-0f7f-48af-93df-809f95ed3034", "4267fbeb-0f7f-48af-93df-809f95ed3034", "4267fbeb-0f7f-48af-93df-809f95ed3034" ], + "x-ms-unique-id": [ "208", "209", "210" ], + "x-ms-client-request-id": [ "80b25d1f-6651-4d7e-8d4c-86d27bd04fe4", "80b25d1f-6651-4d7e-8d4c-86d27bd04fe4", "80b25d1f-6651-4d7e-8d4c-86d27bd04fe4" ], "CommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase" ], "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -338,15 +338,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c5360d53-f5f6-4c52-b36f-4dba5ee9c542" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "ba858168-6733-4e27-b91a-20c5b61bc90b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-correlation-request-id": [ "eeab3390-254a-4d00-813b-813153f0828d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113338Z:eeab3390-254a-4d00-813b-813153f0828d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-correlation-request-id": [ "5a75bf47-1550-44c9-be89-e3b13053bdb4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233526Z:5a75bf47-1550-44c9-be89-e3b13053bdb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:37 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:35:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -355,14 +355,14 @@ "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+10": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "183" ], - "x-ms-client-request-id": [ "0d034afa-907b-47d0-914b-0017abf5db8b" ], + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "7fc33439-70eb-4e4f-b7fc-b134bfe60451" ], "CommandName": [ "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -377,17 +377,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5018d291-55f0-40c9-a3a9-c3d3c918c0b5?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5018d291-55f0-40c9-a3a9-c3d3c918c0b5?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6776e26c-89a7-4dcf-b685-92bf096cf0f1?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6776e26c-89a7-4dcf-b685-92bf096cf0f1?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "e783da14-a8f8-4978-99e1-3ae48d92c05b" ], - "x-ms-correlation-request-id": [ "e783da14-a8f8-4978-99e1-3ae48d92c05b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113339Z:e783da14-a8f8-4978-99e1-3ae48d92c05b" ], + "x-ms-request-id": [ "4509b74f-1807-4124-a6ce-a4212eb6fe00" ], + "x-ms-correlation-request-id": [ "4509b74f-1807-4124-a6ce-a4212eb6fe00" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233526Z:4509b74f-1807-4124-a6ce-a4212eb6fe00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:33:38 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:35:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -396,14 +396,14 @@ "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5018d291-55f0-40c9-a3a9-c3d3c918c0b5?api-version=2020-02-15+11": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6776e26c-89a7-4dcf-b685-92bf096cf0f1?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5018d291-55f0-40c9-a3a9-c3d3c918c0b5?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6776e26c-89a7-4dcf-b685-92bf096cf0f1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "183", "184" ], - "x-ms-client-request-id": [ "0d034afa-907b-47d0-914b-0017abf5db8b", "0d034afa-907b-47d0-914b-0017abf5db8b" ], + "x-ms-unique-id": [ "211", "212" ], + "x-ms-client-request-id": [ "7fc33439-70eb-4e4f-b7fc-b134bfe60451", "7fc33439-70eb-4e4f-b7fc-b134bfe60451" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -419,32 +419,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "fad9e354-bf90-4eaf-b2e6-c66637eb2c95" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "98887bee-2785-402b-9240-3a87fcd22d85" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bc5debc0-cb7e-424a-a156-988075ff7203" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113409Z:bc5debc0-cb7e-424a-a156-988075ff7203" ], + "x-ms-correlation-request-id": [ "0c1ae5ea-4174-4dc9-b159-288068a3b2d0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233556Z:0c1ae5ea-4174-4dc9-b159-288068a3b2d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:09 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:35:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5018d291-55f0-40c9-a3a9-c3d3c918c0b5\",\"name\":\"5018d291-55f0-40c9-a3a9-c3d3c918c0b5\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:33:38.9632628Z\",\"endTime\":\"2020-05-07T11:33:40.5882287Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"e4de4f7c-70a4-4679-951f-d602cd309bc6\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6776e26c-89a7-4dcf-b685-92bf096cf0f1\",\"name\":\"6776e26c-89a7-4dcf-b685-92bf096cf0f1\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:35:26.5607069Z\",\"endTime\":\"2020-08-02T23:35:29.2952989Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"84a90ccd-f9a5-4d56-a359-d4dbcce33cf1\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5018d291-55f0-40c9-a3a9-c3d3c918c0b5?api-version=2020-02-15\u0026operationResultResponseType=Location+12": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6776e26c-89a7-4dcf-b685-92bf096cf0f1?api-version=2020-06-14\u0026operationResultResponseType=Location+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5018d291-55f0-40c9-a3a9-c3d3c918c0b5?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6776e26c-89a7-4dcf-b685-92bf096cf0f1?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "183", "184", "185" ], - "x-ms-client-request-id": [ "0d034afa-907b-47d0-914b-0017abf5db8b", "0d034afa-907b-47d0-914b-0017abf5db8b", "0d034afa-907b-47d0-914b-0017abf5db8b" ], + "x-ms-unique-id": [ "211", "212", "213" ], + "x-ms-client-request-id": [ "7fc33439-70eb-4e4f-b7fc-b134bfe60451", "7fc33439-70eb-4e4f-b7fc-b134bfe60451", "7fc33439-70eb-4e4f-b7fc-b134bfe60451" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -459,15 +459,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "48274067-e5d0-4726-b3f4-78dd6037a89e" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "98fa0226-066e-49be-b48b-88108769e288" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-correlation-request-id": [ "4b655f34-8578-4a53-85db-076009b3163f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113409Z:4b655f34-8578-4a53-85db-076009b3163f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-correlation-request-id": [ "a40679e0-db20-4a61-ad6f-a2450a2c3f6f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233557Z:a40679e0-db20-4a61-ad6f-a2450a2c3f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:09 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:35:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -476,10 +476,10 @@ "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+1": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\"\r\n}", "Headers": { }, @@ -494,33 +494,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "7bd926c5-a977-4529-ba72-aa5bb15ac521" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0250e251-de09-4868-9bb9-c1dc5b725669?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "3d37694d-fb34-46ca-8963-a1980408c5e0" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4a1773c9-ce3b-4765-87c3-5501580792f8?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "41278898-d454-40c4-accd-704da4384d6a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113410Z:41278898-d454-40c4-accd-704da4384d6a" ], + "x-ms-correlation-request-id": [ "df3cccfb-9faf-483d-87ee-2274f9ef4d43" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233557Z:df3cccfb-9faf-483d-87ee-2274f9ef4d43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:09 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:35:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7\",\"name\":\"testclusterpb8oay/testdatabaseaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8\",\"name\":\"testclusterlbfexs/testdatabaser4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0250e251-de09-4868-9bb9-c1dc5b725669?api-version=2020-02-15+2": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4a1773c9-ce3b-4765-87c3-5501580792f8?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0250e251-de09-4868-9bb9-c1dc5b725669?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4a1773c9-ce3b-4765-87c3-5501580792f8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "186", "187" ], - "x-ms-client-request-id": [ "320d1e6e-713d-4a8e-b0dd-79df76b25666", "320d1e6e-713d-4a8e-b0dd-79df76b25666" ], + "x-ms-unique-id": [ "214", "215" ], + "x-ms-client-request-id": [ "57449397-458f-4331-b64b-b3e8cd44b31d", "57449397-458f-4331-b64b-b3e8cd44b31d" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -536,32 +536,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "5c68efd3-1f18-456e-9ca5-64669747247e" ], - "x-ms-request-id": [ "6ad3aef4-fff3-4586-920f-bd8077f4e5a6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "9cf8b19a-1cdf-4f1e-8363-109ce12fca93" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113440Z:5c68efd3-1f18-456e-9ca5-64669747247e" ], + "x-ms-correlation-request-id": [ "c12dcd1c-63ac-4f84-8cf8-56d81c30bc85" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233628Z:c12dcd1c-63ac-4f84-8cf8-56d81c30bc85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:39 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:36:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0250e251-de09-4868-9bb9-c1dc5b725669\",\"name\":\"0250e251-de09-4868-9bb9-c1dc5b725669\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:34:09.8791419Z\",\"endTime\":\"2020-05-07T11:34:11.0510076Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"d497d0f3-a3ff-415e-8546-0cf281c77dfd\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4a1773c9-ce3b-4765-87c3-5501580792f8\",\"name\":\"4a1773c9-ce3b-4765-87c3-5501580792f8\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:35:57.771886Z\",\"endTime\":\"2020-08-02T23:35:59.8364238Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"621896cb-159e-4cf0-8c1f-d3237d2b5052\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+3": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "186", "187", "188" ], - "x-ms-client-request-id": [ "320d1e6e-713d-4a8e-b0dd-79df76b25666", "320d1e6e-713d-4a8e-b0dd-79df76b25666", "320d1e6e-713d-4a8e-b0dd-79df76b25666" ], + "x-ms-unique-id": [ "214", "215", "216" ], + "x-ms-client-request-id": [ "57449397-458f-4331-b64b-b3e8cd44b31d", "57449397-458f-4331-b64b-b3e8cd44b31d", "57449397-458f-4331-b64b-b3e8cd44b31d" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -578,29 +578,29 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-request-id": [ "52085f4b-3a19-49f9-b04e-28905de5c6d5" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], + "x-ms-request-id": [ "c2fdacd0-8471-4450-9417-4bc0e4bf8db5" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b21b26f3-1848-4111-8a0f-c44fd134c57d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113440Z:b21b26f3-1848-4111-8a0f-c44fd134c57d" ], + "x-ms-correlation-request-id": [ "0e471299-9f0f-4581-8bcc-bd6576aa926f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233628Z:0e471299-9f0f-4581-8bcc-bd6576aa926f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:40 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:36:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "471" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7\",\"name\":\"testclusterpb8oay/testdatabaseaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8\",\"name\":\"testclusterlbfexs/testdatabaser4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15+4": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\r\n \"databaseName\": \"testdatabaseaxb9i7\",\r\n \"defaultPrincipalsModificationKind\": \"Union\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\r\n \"databaseName\": \"testdatabaser4qwo8\",\r\n \"defaultPrincipalsModificationKind\": \"Union\"\r\n },\r\n \"location\": \"East US\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -614,33 +614,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "7f9a557b-6446-410f-8458-16d40a0efc73" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/00628441-16c5-47de-b7ce-e95bba58fd0c?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "218ef3fb-238f-435c-9ad1-2889a31bfa78" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/073a86bf-67e5-4642-b969-aa49e3e7efc5?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "fc06a576-3b54-4416-9727-bc46745bd737" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113441Z:fc06a576-3b54-4416-9727-bc46745bd737" ], + "x-ms-correlation-request-id": [ "09402556-f89e-4ae8-a563-4734428db347" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233629Z:09402556-f89e-4ae8-a563-4734428db347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:34:41 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:36:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "622" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7\",\"name\":\"testfcluster25n9il/testdbconfaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabaseaxb9i7\",\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8\",\"name\":\"testfclusterbgiwc7/testdbconfr4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabaser4qwo8\",\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Creating\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/00628441-16c5-47de-b7ce-e95bba58fd0c?api-version=2020-02-15+5": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/073a86bf-67e5-4642-b969-aa49e3e7efc5?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/00628441-16c5-47de-b7ce-e95bba58fd0c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/073a86bf-67e5-4642-b969-aa49e3e7efc5?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "189", "190" ], - "x-ms-client-request-id": [ "1cc73bb3-487b-40d8-81a0-07861c1ebabc", "1cc73bb3-487b-40d8-81a0-07861c1ebabc" ], + "x-ms-unique-id": [ "217", "218" ], + "x-ms-client-request-id": [ "88771cb5-6022-4614-acc8-852cccfb7fac", "88771cb5-6022-4614-acc8-852cccfb7fac" ], "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -656,32 +656,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "853ea105-f74f-4376-8f7f-beb13fb6dc9e" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "54733fa8-ee0b-4a3e-8bac-65d50d0b53cf" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "83644252-3cc8-47a9-854e-d17ad1285df3" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113511Z:83644252-3cc8-47a9-854e-d17ad1285df3" ], + "x-ms-correlation-request-id": [ "0e197cbe-8de2-4924-b2a3-c3eab2dc42e1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233659Z:0e197cbe-8de2-4924-b2a3-c3eab2dc42e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:10 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:36:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/00628441-16c5-47de-b7ce-e95bba58fd0c\",\"name\":\"00628441-16c5-47de-b7ce-e95bba58fd0c\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:34:41.4182799Z\",\"endTime\":\"2020-05-07T11:34:43.1388473Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"e98413c2-fc8e-4025-9750-b06a209c8103\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/073a86bf-67e5-4642-b969-aa49e3e7efc5\",\"name\":\"073a86bf-67e5-4642-b969-aa49e3e7efc5\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:36:29.1976246Z\",\"endTime\":\"2020-08-02T23:36:32.9325235Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"0f4eb602-d2f0-4120-9161-674b1d92975d\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15+6": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "189", "190", "191" ], - "x-ms-client-request-id": [ "1cc73bb3-487b-40d8-81a0-07861c1ebabc", "1cc73bb3-487b-40d8-81a0-07861c1ebabc", "1cc73bb3-487b-40d8-81a0-07861c1ebabc" ], + "x-ms-unique-id": [ "217", "218", "219" ], + "x-ms-client-request-id": [ "88771cb5-6022-4614-acc8-852cccfb7fac", "88771cb5-6022-4614-acc8-852cccfb7fac", "88771cb5-6022-4614-acc8-852cccfb7fac" ], "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -698,32 +698,32 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "d36f2fc9-7fce-438d-854c-f64adae57552" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "84a149c5-fad3-4625-bf37-d594af69efb6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fd4d26bf-b123-4a14-b597-9b80efe01746" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113512Z:fd4d26bf-b123-4a14-b597-9b80efe01746" ], + "x-ms-correlation-request-id": [ "d4af8bb0-6630-4f93-9cba-6e1306cd0970" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233659Z:d4af8bb0-6630-4f93-9cba-6e1306cd0970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:11 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:36:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7\",\"name\":\"testfcluster25n9il/testdbconfaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabaseaxb9i7\",\"attachedDatabaseNames\":[\"testdatabaseaxb9i7\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8\",\"name\":\"testfclusterbgiwc7/testdbconfr4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabaser4qwo8\",\"attachedDatabaseNames\":[\"testdatabaser4qwo8\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+7": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "192" ], - "x-ms-client-request-id": [ "18249692-f863-4e1c-833b-6dabafbf03bc" ], + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "eba53dc7-4f7f-4e81-8f68-75341275253e" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -740,29 +740,29 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "842dbbc6-9ea2-48d7-ba84-a7d7585103da" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "e4c8c529-15a0-4b2b-8c96-2353571e1416" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "24e0f052-8503-470b-b962-2c6a49cfd309" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113512Z:24e0f052-8503-470b-b962-2c6a49cfd309" ], + "x-ms-correlation-request-id": [ "f8b49fe5-1f83-4d1f-90b9-2dbfb073dd4c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233700Z:f8b49fe5-1f83-4d1f-90b9-2dbfb073dd4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:11 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:37:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "827" ], + "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/detachFollowerDatabases?api-version=2020-02-15+8": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/detachFollowerDatabases?api-version=2020-06-14+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/detachFollowerDatabases?api-version=2020-02-15", - "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfaxb9i7\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/detachFollowerDatabases?api-version=2020-06-14", + "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfr4qwo8\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -775,17 +775,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e2914c72-ca7d-4bca-a541-00d47e9d4fb4?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "c6527987-f28e-4325-8d14-9a51861d15af" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e2914c72-ca7d-4bca-a541-00d47e9d4fb4?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/aafe8396-84ca-4330-9ae2-dd2eb29c8913?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "df8fc67e-899f-4885-bec1-bf983743b314" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/aafe8396-84ca-4330-9ae2-dd2eb29c8913?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-correlation-request-id": [ "a67cbda5-bf2e-402e-9116-04ce1718d475" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113512Z:a67cbda5-bf2e-402e-9116-04ce1718d475" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], + "x-ms-correlation-request-id": [ "522dfaca-8fd8-4746-8cef-9131be2c5af1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233700Z:522dfaca-8fd8-4746-8cef-9131be2c5af1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:11 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:37:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -794,14 +794,14 @@ "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e2914c72-ca7d-4bca-a541-00d47e9d4fb4?api-version=2020-02-15+9": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/aafe8396-84ca-4330-9ae2-dd2eb29c8913?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e2914c72-ca7d-4bca-a541-00d47e9d4fb4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/aafe8396-84ca-4330-9ae2-dd2eb29c8913?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "193", "194" ], - "x-ms-client-request-id": [ "c824d3d1-7acb-4d98-9eb2-303fd1e3ec24", "c824d3d1-7acb-4d98-9eb2-303fd1e3ec24" ], + "x-ms-unique-id": [ "221", "222" ], + "x-ms-client-request-id": [ "2a424be5-2026-4c95-b50e-06fc13763b56", "2a424be5-2026-4c95-b50e-06fc13763b56" ], "CommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase" ], "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -817,32 +817,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "35b18798-db71-485f-9df1-092afa714cbe" ], - "x-ms-request-id": [ "eabe7233-edf5-4bdb-be6c-fe89c7370958" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-request-id": [ "1552f2a7-8c2b-46bf-85d0-4e6d55d2c8f8" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113543Z:35b18798-db71-485f-9df1-092afa714cbe" ], + "x-ms-correlation-request-id": [ "c400b027-fee3-44eb-a24e-742a609cc68a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233730Z:c400b027-fee3-44eb-a24e-742a609cc68a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:42 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:37:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e2914c72-ca7d-4bca-a541-00d47e9d4fb4\",\"name\":\"e2914c72-ca7d-4bca-a541-00d47e9d4fb4\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:35:12.6338045Z\",\"endTime\":\"2020-05-07T11:35:14.6494269Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"b7a30c1a-6da8-41a6-b5bd-acd399221ab0\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/aafe8396-84ca-4330-9ae2-dd2eb29c8913\",\"name\":\"aafe8396-84ca-4330-9ae2-dd2eb29c8913\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:37:00.5743966Z\",\"endTime\":\"2020-08-02T23:37:04.6840864Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"66e216c7-9f47-4728-b868-9cd7bce592a4\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e2914c72-ca7d-4bca-a541-00d47e9d4fb4?api-version=2020-02-15\u0026operationResultResponseType=Location+10": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/aafe8396-84ca-4330-9ae2-dd2eb29c8913?api-version=2020-06-14\u0026operationResultResponseType=Location+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e2914c72-ca7d-4bca-a541-00d47e9d4fb4?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/aafe8396-84ca-4330-9ae2-dd2eb29c8913?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "193", "194", "195" ], - "x-ms-client-request-id": [ "c824d3d1-7acb-4d98-9eb2-303fd1e3ec24", "c824d3d1-7acb-4d98-9eb2-303fd1e3ec24", "c824d3d1-7acb-4d98-9eb2-303fd1e3ec24" ], + "x-ms-unique-id": [ "221", "222", "223" ], + "x-ms-client-request-id": [ "2a424be5-2026-4c95-b50e-06fc13763b56", "2a424be5-2026-4c95-b50e-06fc13763b56", "2a424be5-2026-4c95-b50e-06fc13763b56" ], "CommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase" ], "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -857,15 +857,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8c37aaf9-e3a7-4e66-bf00-6c58902790ff" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "9eab510d-cd0b-4a0f-8f43-227d0b327645" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "5813220f-bbc5-4074-9121-00b185c26664" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113543Z:5813220f-bbc5-4074-9121-00b185c26664" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], + "x-ms-correlation-request-id": [ "4823f728-475e-4ef9-9a0a-ec14cfa55fce" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233731Z:4823f728-475e-4ef9-9a0a-ec14cfa55fce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:43 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:37:30 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -874,14 +874,14 @@ "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+11": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+11": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "196" ], - "x-ms-client-request-id": [ "99febcad-2825-4f20-b58d-577599eaaa2b" ], + "x-ms-unique-id": [ "224" ], + "x-ms-client-request-id": [ "28aaa96f-9cd3-4f5a-8da9-056d742d5f13" ], "CommandName": [ "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -896,17 +896,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8b8df9db-9788-4df5-8a02-4d385c152a14?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8b8df9db-9788-4df5-8a02-4d385c152a14?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ "fa50e796-c6b6-488a-a961-9ed94a4a03bb" ], - "x-ms-correlation-request-id": [ "fa50e796-c6b6-488a-a961-9ed94a4a03bb" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113544Z:fa50e796-c6b6-488a-a961-9ed94a4a03bb" ], + "x-ms-request-id": [ "d01cd998-6bb9-4b65-a69d-14fd658152fb" ], + "x-ms-correlation-request-id": [ "d01cd998-6bb9-4b65-a69d-14fd658152fb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233731Z:d01cd998-6bb9-4b65-a69d-14fd658152fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:35:43 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:37:30 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -915,14 +915,14 @@ "Content": null } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8b8df9db-9788-4df5-8a02-4d385c152a14?api-version=2020-02-15+12": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8b8df9db-9788-4df5-8a02-4d385c152a14?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "196", "197" ], - "x-ms-client-request-id": [ "99febcad-2825-4f20-b58d-577599eaaa2b", "99febcad-2825-4f20-b58d-577599eaaa2b" ], + "x-ms-unique-id": [ "224", "225" ], + "x-ms-client-request-id": [ "28aaa96f-9cd3-4f5a-8da9-056d742d5f13", "28aaa96f-9cd3-4f5a-8da9-056d742d5f13" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -938,32 +938,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "a0c6c533-fed7-468f-abbb-f66d0b5b9a7b" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "275" ], + "x-ms-request-id": [ "b6a64686-295e-4a9d-86c6-5fa7b856bf92" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "83bb23a1-8522-4137-8d22-d2b1e498ddb8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113614Z:83bb23a1-8522-4137-8d22-d2b1e498ddb8" ], + "x-ms-correlation-request-id": [ "75bd48ad-fe35-4562-a284-5a7e5400947f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233801Z:75bd48ad-fe35-4562-a284-5a7e5400947f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:36:13 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:38:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8b8df9db-9788-4df5-8a02-4d385c152a14\",\"name\":\"8b8df9db-9788-4df5-8a02-4d385c152a14\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:35:43.8915097Z\",\"endTime\":\"2020-05-07T11:35:45.6102582Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"35d7fb12-ee37-4a84-ae5a-933e6eadf753\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4\",\"name\":\"b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:37:31.4505658Z\",\"endTime\":\"2020-08-02T23:37:33.4663561Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"4b37d64e-1e97-46bd-971a-bfdd9d47a510\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8b8df9db-9788-4df5-8a02-4d385c152a14?api-version=2020-02-15\u0026operationResultResponseType=Location+13": { + "Invoke-AzKustoDetachClusterFollowerDatabase+[NoContext]+DetachViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4?api-version=2020-06-14\u0026operationResultResponseType=Location+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8b8df9db-9788-4df5-8a02-4d385c152a14?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b9f5afb0-7084-4a5c-92e3-176c2ddb4bd4?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "196", "197", "198" ], - "x-ms-client-request-id": [ "99febcad-2825-4f20-b58d-577599eaaa2b", "99febcad-2825-4f20-b58d-577599eaaa2b", "99febcad-2825-4f20-b58d-577599eaaa2b" ], + "x-ms-unique-id": [ "224", "225", "226" ], + "x-ms-client-request-id": [ "28aaa96f-9cd3-4f5a-8da9-056d742d5f13", "28aaa96f-9cd3-4f5a-8da9-056d742d5f13", "28aaa96f-9cd3-4f5a-8da9-056d742d5f13" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -978,15 +978,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9693b719-c77f-44e1-80f5-46f2bef3ccec" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "4e578c39-42f8-44cf-a205-9a1d5df57ede" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-correlation-request-id": [ "bacd490b-56a3-440f-b14e-18d8eb332761" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113614Z:bacd490b-56a3-440f-b14e-18d8eb332761" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "274" ], + "x-ms-correlation-request-id": [ "98af1167-5139-403c-8b65-742650c274ba" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233801Z:98af1167-5139-403c-8b65-742650c274ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:36:13 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:38:01 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json b/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json index ae7dea22c555..967d1dfc9955 100644 --- a/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json +++ b/src/Kusto/test/Invoke-AzKustoDiagnoseClusterVirtualNetwork.Recording.json @@ -1,12 +1,12 @@ { - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/diagnoseVirtualNetwork?api-version=2020-02-15+1": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/diagnoseVirtualNetwork?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/diagnoseVirtualNetwork?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/diagnoseVirtualNetwork?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,17 +21,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "41587567-540a-47c6-9f16-193891d10036" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "f0f0fe2d-af44-48b4-b3ee-0c5f65931bad" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], - "x-ms-correlation-request-id": [ "3097ce9c-9d29-4a52-9f37-04aa3afb8de0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113615Z:3097ce9c-9d29-4a52-9f37-04aa3afb8de0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], + "x-ms-correlation-request-id": [ "647dfdbc-84f7-4e2b-a06e-126f5701c82f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233802Z:647dfdbc-84f7-4e2b-a06e-126f5701c82f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:36:14 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:38:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -40,14 +40,14 @@ "Content": null } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+2": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -63,32 +63,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "01641f2b-22aa-4a71-9af6-917d74d2d8e3" ], - "x-ms-request-id": [ "b39c1e52-8fcf-411c-9933-1a87962a4de0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "273" ], + "x-ms-request-id": [ "05fb3f4d-30c7-49b9-9fa2-3ce25315c026" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113645Z:01641f2b-22aa-4a71-9af6-917d74d2d8e3" ], + "x-ms-correlation-request-id": [ "2087b886-572c-4ea7-b270-6704de776910" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233832Z:2087b886-572c-4ea7-b270-6704de776910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:36:45 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:38:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+3": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -104,32 +104,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "7e630ae9-3b9f-44cb-8beb-abe6241c47d3" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "272" ], + "x-ms-request-id": [ "dfe7bb2e-2cbb-45b1-8ca9-327bc84b7ca8" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "44b9d2e7-7f2c-4b02-8fa8-7bcc016a3bc0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113716Z:44b9d2e7-7f2c-4b02-8fa8-7bcc016a3bc0" ], + "x-ms-correlation-request-id": [ "b3594465-b6de-4fcc-a3bb-cfbcaebd62f6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233903Z:b3594465-b6de-4fcc-a3bb-cfbcaebd62f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:37:15 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:39:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+4": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -145,32 +145,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "a0a7d3e4-f9ac-4599-816f-293b0e9918f2" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "271" ], + "x-ms-request-id": [ "63a5c350-4f8a-4b4f-8fa9-162a7922f2b3" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "1fb7b07d-8893-4d6e-b6bf-4da68615715d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113746Z:1fb7b07d-8893-4d6e-b6bf-4da68615715d" ], + "x-ms-correlation-request-id": [ "0d30d9d0-9277-4ec9-90fe-7dfe6a2e5567" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T233933Z:0d30d9d0-9277-4ec9-90fe-7dfe6a2e5567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:37:46 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:39:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+5": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202", "203" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230", "231" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -186,32 +186,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "65c41fd9-9573-4da1-a8ce-6978c4869053" ], - "x-ms-request-id": [ "8da04bc9-a975-4f52-a8af-df13ed152189" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "ff1f9e17-d0ce-4846-966a-5bdfe876964f" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113816Z:65c41fd9-9573-4da1-a8ce-6978c4869053" ], + "x-ms-correlation-request-id": [ "dda44a22-589c-498a-941d-3eb115cffe30" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234003Z:dda44a22-589c-498a-941d-3eb115cffe30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:38:16 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:40:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+6": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202", "203", "204" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230", "231", "232" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -227,32 +227,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "9d9302d5-387b-40fb-9431-9df8663fa370" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "9a054bf1-dfea-402a-a5e2-a7b6ac6c196c" ], + "x-ms-request-id": [ "114b4c42-a3d2-4af4-b6b1-ca21a605d457" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "153d6b22-deaa-4224-95af-9d06ad5e41f5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113847Z:153d6b22-deaa-4224-95af-9d06ad5e41f5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234033Z:9a054bf1-dfea-402a-a5e2-a7b6ac6c196c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:38:46 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:40:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+7": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202", "203", "204", "205" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230", "231", "232", "233" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -268,32 +268,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "x-ms-request-id": [ "89ebe298-1bf9-4c8a-aeeb-037577030538" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "cd8c2c51-1eab-41a4-b73c-6de4e016e79b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "92607e5b-1ee7-40a3-ac59-93fd8860f0e4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113917Z:92607e5b-1ee7-40a3-ac59-93fd8860f0e4" ], + "x-ms-correlation-request-id": [ "e2f3c63b-241c-46ab-86bc-adec6bf64e13" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234104Z:e2f3c63b-241c-46ab-86bc-adec6bf64e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:39:17 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:41:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+8": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202", "203", "204", "205", "206" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230", "231", "232", "233", "234" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -309,32 +309,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a5bd02b9-72e4-4e73-a825-e2f864cefedb" ], - "x-ms-request-id": [ "0bb4c4ab-ecb3-492c-9129-096199ca6ec5" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "1d5ec5f1-da4a-49ba-a93f-1870f3bb9e8b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T113947Z:a5bd02b9-72e4-4e73-a825-e2f864cefedb" ], + "x-ms-correlation-request-id": [ "0b52cc5f-5ee3-4612-8547-f599011eb729" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234134Z:0b52cc5f-5ee3-4612-8547-f599011eb729" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:39:47 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:41:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+9": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202", "203", "204", "205", "206", "207" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230", "231", "232", "233", "234", "235" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -350,32 +350,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "0619eff4-b837-4e6e-91b3-08249958ed84" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "5b3dbbd7-f44c-47db-9430-3648d3661f08" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6fcf6053-492b-423b-befe-c623af3f133d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114018Z:6fcf6053-492b-423b-befe-c623af3f133d" ], + "x-ms-correlation-request-id": [ "41f597b0-b4b8-4197-b212-4a478e21341f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234204Z:41f597b0-b4b8-4197-b212-4a478e21341f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:40:17 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:42:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+10": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202", "203", "204", "205", "206", "207", "208" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230", "231", "232", "233", "234", "235", "236" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -391,32 +391,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "3de415ec-8f45-41e8-bf30-ee27eb0c94fc" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "9abe3ef2-23eb-4cd9-bf5a-fa4bd662bdf7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ab59fff0-9bda-4165-b69e-1884375fc784" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114048Z:ab59fff0-9bda-4165-b69e-1884375fc784" ], + "x-ms-correlation-request-id": [ "a1ee83e2-1dcd-41c0-9906-665a34f2a855" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234235Z:a1ee83e2-1dcd-41c0-9906-665a34f2a855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:40:48 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:42:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:36:14.9627885Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:38:02.4754208Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15+11": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -432,32 +432,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0972c74c-8980-4665-925e-f2a1e62942f2" ], - "x-ms-request-id": [ "e2a75d58-7a81-45c5-bc49-ac2c46d53b1f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "84f6c4ea-3f6d-4e59-a38a-39ac91501654" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114118Z:0972c74c-8980-4665-925e-f2a1e62942f2" ], + "x-ms-correlation-request-id": [ "2937a62c-97a1-4cde-a174-d3577790112a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234305Z:2937a62c-97a1-4cde-a174-d3577790112a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:18 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:43:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "360" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cc94379b-b680-48e6-bc77-b8925a313c20\",\"name\":\"cc94379b-b680-48e6-bc77-b8925a313c20\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:36:14.9627885Z\",\"endTime\":\"2020-05-07T11:41:15.5842409Z\",\"percentComplete\":1.0,\"properties\":{\"Findings\":[]}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"name\":\"92fb4674-dccc-4f4f-8780-e8a06f2b2d84\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:38:02.4754208Z\",\"endTime\":\"2020-08-02T23:43:03.7103606Z\",\"percentComplete\":1.0,\"properties\":{\"Findings\":[]}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15\u0026operationResultResponseType=Location+12": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+Diagnose+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14\u0026operationResultResponseType=Location+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cc94379b-b680-48e6-bc77-b8925a313c20?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/92fb4674-dccc-4f4f-8780-e8a06f2b2d84?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "210" ], - "x-ms-client-request-id": [ "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1", "d636bf1a-d20c-4d29-896f-501a32ba48c1" ], + "x-ms-unique-id": [ "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238" ], + "x-ms-client-request-id": [ "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69", "c0f13ade-1e73-4d5e-bec5-2a7614686a69" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_Diagnose" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -473,15 +473,15 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "5f35f2e8-6074-4a08-a228-9287b4ac8f40" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "655fe2ac-b14e-4ba1-b01d-fd6252cce8f3" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6fb2b218-49a4-46a5-8de4-79309fdf7c0b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114119Z:6fb2b218-49a4-46a5-8de4-79309fdf7c0b" ], + "x-ms-correlation-request-id": [ "e5c53ef2-dee1-4e07-9a57-ca64bac676f8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234305Z:e5c53ef2-dee1-4e07-9a57-ca64bac676f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:18 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:43:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "15" ], @@ -491,14 +491,14 @@ "Content": "{\"Findings\":[]}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+1": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "211" ], - "x-ms-client-request-id": [ "864d317c-3e1b-423d-ac87-582785a03c4e" ], + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "71778592-b071-43c8-bf40-2ed7b4a7082c" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -516,31 +516,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "1e2a765e-42d7-4b93-834f-44c0dc0cb430" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "4f6df0d1-80d0-4ae1-8517-b65cdb070b6b" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bf282007-a202-4057-b012-898d7ef49b1b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114119Z:bf282007-a202-4057-b012-898d7ef49b1b" ], + "x-ms-correlation-request-id": [ "d32b3d99-0b55-4498-b259-ac0a76e4269b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234305Z:d32b3d99-0b55-4498-b259-ac0a76e4269b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:18 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:43:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "827" ], + "Content-Length": [ "858" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"},{\"languageExtensionName\":\"R\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/diagnoseVirtualNetwork?api-version=2020-02-15+2": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/diagnoseVirtualNetwork?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/diagnoseVirtualNetwork?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/diagnoseVirtualNetwork?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -555,17 +555,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "2f4b3f67-d65d-435c-9c85-8f52128c9f67" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "54ca89bc-454c-44cf-93e6-80ae8343fb55" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], - "x-ms-correlation-request-id": [ "9a567f4a-d849-474b-a607-ef30926b996a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114120Z:9a567f4a-d849-474b-a607-ef30926b996a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "x-ms-correlation-request-id": [ "617b569c-2caa-4a93-a797-7fdf990178c4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234306Z:617b569c-2caa-4a93-a797-7fdf990178c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:19 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:43:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -574,14 +574,14 @@ "Content": null } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+3": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -597,32 +597,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "76205499-7b62-48cf-9bea-430910f40129" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "bd6e745d-8aec-47c6-bda8-6d87826eed25" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d3914d22-9cc4-413d-8da7-52ba9e1b282a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114150Z:d3914d22-9cc4-413d-8da7-52ba9e1b282a" ], + "x-ms-correlation-request-id": [ "0dc4bf0d-ec83-40f8-a936-8adb3081f539" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234336Z:0dc4bf0d-ec83-40f8-a936-8adb3081f539" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:41:49 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:43:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+4": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -638,32 +638,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "802c3973-d3ed-472b-bb86-b9bc58603608" ], - "x-ms-request-id": [ "0535a47a-3c28-48d9-bf2b-5f71f1aa36f1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-request-id": [ "9ede160d-8614-4a4b-b720-8f26fe769841" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114220Z:802c3973-d3ed-472b-bb86-b9bc58603608" ], + "x-ms-correlation-request-id": [ "68eeed92-ccb1-485e-8b4e-e0c7e882c5d3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234406Z:68eeed92-ccb1-485e-8b4e-e0c7e882c5d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:42:20 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:44:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+5": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -679,32 +679,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "faf2d2e8-7ae6-4e86-88d8-0c02253d603c" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], + "x-ms-request-id": [ "da6b4657-3cc8-4529-9a3f-a9f2779df438" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "866a2223-e587-4f13-a61c-3b498c617511" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114251Z:866a2223-e587-4f13-a61c-3b498c617511" ], + "x-ms-correlation-request-id": [ "ddde9283-37bc-4264-8cfa-32599591da63" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234436Z:ddde9283-37bc-4264-8cfa-32599591da63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:42:50 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:44:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+6": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243", "244" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -720,32 +720,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "64d58426-565f-4891-99df-f879539f707f" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "93a2b486-dcf7-43a5-85c0-f6dbf27d8c0d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d450b248-1d24-4675-b945-b9108b1ca9f2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114321Z:d450b248-1d24-4675-b945-b9108b1ca9f2" ], + "x-ms-correlation-request-id": [ "1b04d86b-c007-4f9d-9497-5ff2bfb85280" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234507Z:1b04d86b-c007-4f9d-9497-5ff2bfb85280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:43:20 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:45:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+7": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243", "244", "245" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -761,32 +761,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "5b1b239a-330a-43d4-aa57-4244e3d7f5bf" ], - "x-ms-request-id": [ "6f3a49b5-d708-4870-822a-c071ea5ae06e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "517488c9-9fb9-4bf7-93e4-b8cb2f67c166" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114351Z:5b1b239a-330a-43d4-aa57-4244e3d7f5bf" ], + "x-ms-correlation-request-id": [ "0392cd67-c377-4584-8ffa-c3cef48914c6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234537Z:0392cd67-c377-4584-8ffa-c3cef48914c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:43:51 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:45:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+8": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217", "218" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243", "244", "245", "246" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -802,32 +802,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "b485a454-312a-47af-8484-043f345ec5b1" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "fb570216-a854-4153-a70e-af52e0b02d59" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "02de31b9-8120-4bcf-bac5-fe043c6d21db" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114422Z:02de31b9-8120-4bcf-bac5-fe043c6d21db" ], + "x-ms-correlation-request-id": [ "4b382437-ab98-4f1b-b4c0-7139fb64fcde" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234607Z:4b382437-ab98-4f1b-b4c0-7139fb64fcde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:44:21 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:46:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+9": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217", "218", "219" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243", "244", "245", "246", "247" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -843,32 +843,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "x-ms-request-id": [ "51960d89-92d5-4a6a-8a18-29d27930925a" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "a998f258-ee41-49bf-b090-2579299b87a1" ], + "x-ms-request-id": [ "c15f7939-3be9-469a-9dff-88b885e1f325" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "51b47b14-bd92-4c4f-bfc9-8c1c534ad57f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114452Z:51b47b14-bd92-4c4f-bfc9-8c1c534ad57f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234637Z:a998f258-ee41-49bf-b090-2579299b87a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:44:52 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:46:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+10": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217", "218", "219", "220" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243", "244", "245", "246", "247", "248" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -884,32 +884,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "510d3b81-bebd-4f03-aa76-49fe2730be73" ], - "x-ms-request-id": [ "5c060125-5dff-4248-89aa-746ce5add04a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "df73402a-6d3f-4693-8047-1360a166f3bf" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114522Z:510d3b81-bebd-4f03-aa76-49fe2730be73" ], + "x-ms-correlation-request-id": [ "56dc1db2-784b-4f06-b489-9bb5f5e47bc8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234708Z:56dc1db2-784b-4f06-b489-9bb5f5e47bc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:45:22 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:47:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+11": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217", "218", "219", "220", "221" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243", "244", "245", "246", "247", "248", "249" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -925,32 +925,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "f52591d9-e46a-4198-a3b7-266dcd1fbc1c" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "1de863df-5377-4d7d-8bcb-1f0ff981d4ec" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "adce33ac-90aa-4a48-b276-adfd227dea5b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114553Z:adce33ac-90aa-4a48-b276-adfd227dea5b" ], + "x-ms-correlation-request-id": [ "403945f2-e3be-4b91-914e-1a8180efbbfa" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234738Z:403945f2-e3be-4b91-914e-1a8180efbbfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:45:52 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:47:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:41:19.8819812Z\",\"percentComplete\":0.5,\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:43:06.0699151Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15+12": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -966,32 +966,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "25a8af3f-bd5d-44bb-a37c-5c3155b5bab5" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "283a40b3-d183-4efc-a372-c9e0b2be956c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f6ba4e33-e45b-4719-8927-ce71d8999aa0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114623Z:f6ba4e33-e45b-4719-8927-ce71d8999aa0" ], + "x-ms-correlation-request-id": [ "8d3daf33-2c6b-4090-8b6b-86ecfd630f87" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234808Z:8d3daf33-2c6b-4090-8b6b-86ecfd630f87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:23 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:48:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "360" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"name\":\"3aed6cd9-66cc-4b6d-aa63-a9844a4ac729\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:41:19.8819812Z\",\"endTime\":\"2020-05-07T11:46:20.5082907Z\",\"percentComplete\":1.0,\"properties\":{\"Findings\":[]}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"name\":\"e4ac9902-7ede-4a95-bb4d-56f13c688b21\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:43:06.0699151Z\",\"endTime\":\"2020-08-02T23:48:06.7370476Z\",\"percentComplete\":1.0,\"properties\":{\"Findings\":[]}}" } }, - "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15\u0026operationResultResponseType=Location+13": { + "Invoke-AzKustoDiagnoseClusterVirtualNetwork+[NoContext]+DiagnoseViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14\u0026operationResultResponseType=Location+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3aed6cd9-66cc-4b6d-aa63-a9844a4ac729?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e4ac9902-7ede-4a95-bb4d-56f13c688b21?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223" ], - "x-ms-client-request-id": [ "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8", "fa62e78b-63a0-475b-92bf-e69bfedd32b8" ], + "x-ms-unique-id": [ "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251" ], + "x-ms-client-request-id": [ "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be", "69cb65b0-b8c8-4619-8404-50bc5efc98be" ], "CommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork", "Invoke-AzKustoDiagnoseClusterVirtualNetwork" ], "FullCommandName": [ "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity", "Invoke-AzKustoDiagnoseClusterVirtualNetwork_DiagnoseViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1007,15 +1007,15 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "751decdf-ccca-403e-ac0e-3cb543ba2760" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "40ea13a9-6153-4cdf-85e0-b8a2ad25e6ae" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "db4d12b9-571c-4e53-9f9b-7aeca6e9962d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114623Z:db4d12b9-571c-4e53-9f9b-7aeca6e9962d" ], + "x-ms-correlation-request-id": [ "01735696-c63a-4892-a7cb-9722f558d878" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234809Z:01735696-c63a-4892-a7cb-9722f558d878" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:23 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:48:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "15" ], diff --git a/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Recording.json b/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Recording.json index 4a1664f0338c..afde832a1ce0 100644 --- a/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Recording.json +++ b/src/Kusto/test/New-AzKustoAttachedDatabaseConfiguration.Recording.json @@ -1,8 +1,8 @@ { - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+1": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\"\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "43aea7b0-40f6-4831-b784-0ceeb0fdf282" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b63986b6-2962-48d9-97a6-f2711d27d8c8?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "d9ad361c-56bd-4a01-bb32-4ba12648ca8d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8120d52f-249c-402c-aed8-495bfe110a62?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "197" ], - "x-ms-correlation-request-id": [ "7afd69fe-9b9c-433a-88bc-296f3af3aa45" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114624Z:7afd69fe-9b9c-433a-88bc-296f3af3aa45" ], + "x-ms-correlation-request-id": [ "b7fe3eaf-a68d-4a40-a1c0-526c8b77801e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234810Z:b7fe3eaf-a68d-4a40-a1c0-526c8b77801e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:24 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:48:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf\",\"name\":\"testclusterpb8oay/testdatabasei6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho\",\"name\":\"testclusterlbfexs/testdatabasesu8yho\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b63986b6-2962-48d9-97a6-f2711d27d8c8?api-version=2020-02-15+2": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8120d52f-249c-402c-aed8-495bfe110a62?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b63986b6-2962-48d9-97a6-f2711d27d8c8?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8120d52f-249c-402c-aed8-495bfe110a62?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "224", "225" ], - "x-ms-client-request-id": [ "7a324802-bca4-4188-ad08-499572f050d0", "7a324802-bca4-4188-ad08-499572f050d0" ], + "x-ms-unique-id": [ "252", "253" ], + "x-ms-client-request-id": [ "d3c3dcdf-02bf-456e-9835-3b5354a8c5a1", "d3c3dcdf-02bf-456e-9835-3b5354a8c5a1" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "fdc08811-f526-4270-a562-49bfab2b3d09" ], - "x-ms-request-id": [ "0bcfb4eb-f4e9-4c5f-a92f-d78d35e91da1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "950e4132-1d38-4347-8b7e-7644a978d174" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114654Z:fdc08811-f526-4270-a562-49bfab2b3d09" ], + "x-ms-correlation-request-id": [ "ea239b26-b30c-443d-a520-42fd361eb70e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234840Z:ea239b26-b30c-443d-a520-42fd361eb70e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:54 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:48:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b63986b6-2962-48d9-97a6-f2711d27d8c8\",\"name\":\"b63986b6-2962-48d9-97a6-f2711d27d8c8\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:46:24.2270361Z\",\"endTime\":\"2020-05-07T11:46:27.0429365Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"bde041a0-b502-445d-9e0b-8719131ad2bc\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8120d52f-249c-402c-aed8-495bfe110a62\",\"name\":\"8120d52f-249c-402c-aed8-495bfe110a62\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:48:09.9172177Z\",\"endTime\":\"2020-08-02T23:48:11.5784391Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"0a42f0a0-1ffc-4032-8274-a871841bb1bd\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+3": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "224", "225", "226" ], - "x-ms-client-request-id": [ "7a324802-bca4-4188-ad08-499572f050d0", "7a324802-bca4-4188-ad08-499572f050d0", "7a324802-bca4-4188-ad08-499572f050d0" ], + "x-ms-unique-id": [ "252", "253", "254" ], + "x-ms-client-request-id": [ "d3c3dcdf-02bf-456e-9835-3b5354a8c5a1", "d3c3dcdf-02bf-456e-9835-3b5354a8c5a1", "d3c3dcdf-02bf-456e-9835-3b5354a8c5a1" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -102,28 +102,28 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "7dd819d9-4011-40ce-8f84-de7633faf35e" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "3ff5c021-f358-428e-896e-b88b80f8c54a" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3d8584ce-acf9-4488-83ff-e84b7fbf813b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114655Z:3d8584ce-acf9-4488-83ff-e84b7fbf813b" ], + "x-ms-correlation-request-id": [ "944e616d-2d3b-4e96-bcba-13ff1dc37dab" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234840Z:944e616d-2d3b-4e96-bcba-13ff1dc37dab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:54 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:48:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "471" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf\",\"name\":\"testclusterpb8oay/testdatabasei6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho\",\"name\":\"testclusterlbfexs/testdatabasesu8yho\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf?api-version=2020-02-15+4": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\r\n \"databaseName\": \"testdatabasei6wlsf\",\r\n \"defaultPrincipalsModificationKind\": \"Union\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\r\n \"databaseName\": \"testdatabasesu8yho\",\r\n \"defaultPrincipalsModificationKind\": \"Union\"\r\n },\r\n \"location\": \"East US\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -137,33 +137,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "f7a70f1e-6d9b-4c8d-8251-bbd47135ce79" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4f2f05dc-f828-44ca-a5b8-1d99c7a85bf7?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "c93ff8af-92f3-4f9c-b900-f32b3d8a139a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3df31102-0d78-4790-ac9d-230ca249af78?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "197" ], - "x-ms-correlation-request-id": [ "1b26d713-96e0-4f59-a277-216d17f080bb" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114655Z:1b26d713-96e0-4f59-a277-216d17f080bb" ], + "x-ms-correlation-request-id": [ "51131a01-5c74-49e3-b961-74da00f7aff3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234841Z:51131a01-5c74-49e3-b961-74da00f7aff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:46:55 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:48:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "622" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf\",\"name\":\"testfcluster25n9il/testdbconfi6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabasei6wlsf\",\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho\",\"name\":\"testfclusterbgiwc7/testdbconfsu8yho\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabasesu8yho\",\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4f2f05dc-f828-44ca-a5b8-1d99c7a85bf7?api-version=2020-02-15+5": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3df31102-0d78-4790-ac9d-230ca249af78?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4f2f05dc-f828-44ca-a5b8-1d99c7a85bf7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3df31102-0d78-4790-ac9d-230ca249af78?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "227", "228" ], - "x-ms-client-request-id": [ "d9e87388-63a1-41c7-893f-cbfb0634337e", "d9e87388-63a1-41c7-893f-cbfb0634337e" ], + "x-ms-unique-id": [ "255", "256" ], + "x-ms-client-request-id": [ "ae284cac-894a-4146-88c8-312a6a96fa8b", "ae284cac-894a-4146-88c8-312a6a96fa8b" ], "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -179,32 +179,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "6f4a7c41-c3d6-4a21-913e-51fd12e73a7b" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "6b6e3c3b-db60-4295-ba66-13b9e3857983" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b66d8129-cb51-4cea-a77e-84cd1baab439" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114726Z:b66d8129-cb51-4cea-a77e-84cd1baab439" ], + "x-ms-correlation-request-id": [ "b2240c45-f10f-4d38-aa32-8f940030082d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234911Z:b2240c45-f10f-4d38-aa32-8f940030082d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:25 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:49:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4f2f05dc-f828-44ca-a5b8-1d99c7a85bf7\",\"name\":\"4f2f05dc-f828-44ca-a5b8-1d99c7a85bf7\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:46:55.765714Z\",\"endTime\":\"2020-05-07T11:46:58.1719571Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"27144f56-a887-425c-94b7-ccd47b7eb72d\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3df31102-0d78-4790-ac9d-230ca249af78\",\"name\":\"3df31102-0d78-4790-ac9d-230ca249af78\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:48:41.2646308Z\",\"endTime\":\"2020-08-02T23:48:43.9523579Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"eecf26fa-7061-4a6f-900a-c3acfcd7dbbc\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf?api-version=2020-02-15+6": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "227", "228", "229" ], - "x-ms-client-request-id": [ "d9e87388-63a1-41c7-893f-cbfb0634337e", "d9e87388-63a1-41c7-893f-cbfb0634337e", "d9e87388-63a1-41c7-893f-cbfb0634337e" ], + "x-ms-unique-id": [ "255", "256", "257" ], + "x-ms-client-request-id": [ "ae284cac-894a-4146-88c8-312a6a96fa8b", "ae284cac-894a-4146-88c8-312a6a96fa8b", "ae284cac-894a-4146-88c8-312a6a96fa8b" ], "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -222,28 +222,28 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "b181d72e-d93f-4b9c-901d-c301767e0a00" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "f4ce023b-3155-4314-9c49-e7a7a58874ea" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b6220400-c44c-4b43-80a0-40fa78021cf5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114726Z:b6220400-c44c-4b43-80a0-40fa78021cf5" ], + "x-ms-correlation-request-id": [ "70696c68-db22-4825-94e1-84193a5aaa55" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234912Z:70696c68-db22-4825-94e1-84193a5aaa55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:25 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:49:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfi6wlsf\",\"name\":\"testfcluster25n9il/testdbconfi6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabasei6wlsf\",\"attachedDatabaseNames\":[\"testdatabasei6wlsf\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfsu8yho\",\"name\":\"testfclusterbgiwc7/testdbconfsu8yho\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabasesu8yho\",\"attachedDatabaseNames\":[\"testdatabasesu8yho\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/detachFollowerDatabases?api-version=2020-02-15+7": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/detachFollowerDatabases?api-version=2020-06-14+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/detachFollowerDatabases?api-version=2020-02-15", - "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfi6wlsf\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/detachFollowerDatabases?api-version=2020-06-14", + "Content": "{\r\n \"attachedDatabaseConfigurationName\": \"testdbconfsu8yho\",\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -256,17 +256,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ec57817d-17a9-400c-a811-6fa9ba37d752?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "ab4e027f-b989-4fdf-b5ac-20cc21264a86" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ec57817d-17a9-400c-a811-6fa9ba37d752?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "770b854d-0d8a-4818-b51f-0389d9376ff5" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-correlation-request-id": [ "5c95160e-7d06-462e-b72e-0998b1d65826" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114726Z:5c95160e-7d06-462e-b72e-0998b1d65826" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], + "x-ms-correlation-request-id": [ "6f23e6a1-3d15-42a4-a5f3-9def4224aaf5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234912Z:6f23e6a1-3d15-42a4-a5f3-9def4224aaf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:26 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:49:12 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -275,14 +275,14 @@ "Content": null } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ec57817d-17a9-400c-a811-6fa9ba37d752?api-version=2020-02-15+8": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ec57817d-17a9-400c-a811-6fa9ba37d752?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "230", "231" ], - "x-ms-client-request-id": [ "6659ade5-450f-4e9e-828b-601c93e226e8", "6659ade5-450f-4e9e-828b-601c93e226e8" ], + "x-ms-unique-id": [ "258", "259" ], + "x-ms-client-request-id": [ "328a06d2-65ad-4f4b-98ba-239372f0e221", "328a06d2-65ad-4f4b-98ba-239372f0e221" ], "CommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase" ], "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -298,32 +298,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "081946f3-1e2a-45ea-a13b-bd26eccd8abe" ], - "x-ms-request-id": [ "a6cf8ffe-7290-440f-83dc-2666603a349e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "dfa9588a-6b4b-4807-9bf2-151cf49ea796" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114757Z:081946f3-1e2a-45ea-a13b-bd26eccd8abe" ], + "x-ms-correlation-request-id": [ "f49759c8-05b0-4d97-bfcc-0a82893be2e6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234942Z:f49759c8-05b0-4d97-bfcc-0a82893be2e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:56 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:49:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ec57817d-17a9-400c-a811-6fa9ba37d752\",\"name\":\"ec57817d-17a9-400c-a811-6fa9ba37d752\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:47:26.7699152Z\",\"endTime\":\"2020-05-07T11:47:28.9261778Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"ab5acd7e-8314-422f-bde3-e0bd460c0df6\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458\",\"name\":\"7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:49:12.3766602Z\",\"endTime\":\"2020-08-02T23:49:15.4392976Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"6799eb1e-d882-4c1f-a2d6-b4b4d6c2db6f\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ec57817d-17a9-400c-a811-6fa9ba37d752?api-version=2020-02-15\u0026operationResultResponseType=Location+9": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458?api-version=2020-06-14\u0026operationResultResponseType=Location+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ec57817d-17a9-400c-a811-6fa9ba37d752?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7f29e1f1-3ee5-4f4c-b5a6-0da83bbac458?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "230", "231", "232" ], - "x-ms-client-request-id": [ "6659ade5-450f-4e9e-828b-601c93e226e8", "6659ade5-450f-4e9e-828b-601c93e226e8", "6659ade5-450f-4e9e-828b-601c93e226e8" ], + "x-ms-unique-id": [ "258", "259", "260" ], + "x-ms-client-request-id": [ "328a06d2-65ad-4f4b-98ba-239372f0e221", "328a06d2-65ad-4f4b-98ba-239372f0e221", "328a06d2-65ad-4f4b-98ba-239372f0e221" ], "CommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase", "Invoke-AzKustoDetachClusterFollowerDatabase" ], "FullCommandName": [ "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded", "Invoke-AzKustoDetachClusterFollowerDatabase_DetachExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -338,15 +338,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f2f303b7-9673-46ac-ae05-1915cc299aa1" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "d993a02e-a7c8-44f0-9aa3-b5dc9a90fcda" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-correlation-request-id": [ "ac0e0664-13f0-41df-ae16-85a99ba2c36c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114757Z:ac0e0664-13f0-41df-ae16-85a99ba2c36c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-correlation-request-id": [ "f62e1b8b-9791-4788-b35c-bb4ff60c6821" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234942Z:f62e1b8b-9791-4788-b35c-bb4ff60c6821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:57 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:49:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -355,14 +355,14 @@ "Content": null } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+10": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "ce7a9f85-7415-4578-96dd-62021cd1e7e1" ], + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "6dc9db64-3cd7-4176-9831-73e437335716" ], "CommandName": [ "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -377,17 +377,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/84dbd276-46fd-4e36-b1b6-b95d41a3e833?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/84dbd276-46fd-4e36-b1b6-b95d41a3e833?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/285890a4-5f39-4c15-af4f-bc26496fd3bd?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/285890a4-5f39-4c15-af4f-bc26496fd3bd?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-request-id": [ "a366ce67-c219-49fd-a236-f263aa0a9caf" ], - "x-ms-correlation-request-id": [ "a366ce67-c219-49fd-a236-f263aa0a9caf" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114758Z:a366ce67-c219-49fd-a236-f263aa0a9caf" ], + "x-ms-request-id": [ "3362777d-fd86-469a-b95b-451a06dc340f" ], + "x-ms-correlation-request-id": [ "3362777d-fd86-469a-b95b-451a06dc340f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T234943Z:3362777d-fd86-469a-b95b-451a06dc340f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:47:57 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:49:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -396,14 +396,14 @@ "Content": null } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/84dbd276-46fd-4e36-b1b6-b95d41a3e833?api-version=2020-02-15+11": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/285890a4-5f39-4c15-af4f-bc26496fd3bd?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/84dbd276-46fd-4e36-b1b6-b95d41a3e833?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/285890a4-5f39-4c15-af4f-bc26496fd3bd?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "233", "234" ], - "x-ms-client-request-id": [ "ce7a9f85-7415-4578-96dd-62021cd1e7e1", "ce7a9f85-7415-4578-96dd-62021cd1e7e1" ], + "x-ms-unique-id": [ "261", "262" ], + "x-ms-client-request-id": [ "6dc9db64-3cd7-4176-9831-73e437335716", "6dc9db64-3cd7-4176-9831-73e437335716" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -419,32 +419,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "dd3fe18b-2269-4fb2-a376-af239ff6e0d5" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "3b15b14d-c289-4af8-a518-f37aacfd09b9" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "62057c18-9116-4d4d-af42-f4cd768ab954" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114828Z:62057c18-9116-4d4d-af42-f4cd768ab954" ], + "x-ms-correlation-request-id": [ "ff40cc3b-5425-47b6-85ce-7d1ebb8163f3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235013Z:ff40cc3b-5425-47b6-85ce-7d1ebb8163f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:48:27 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:50:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "466" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/84dbd276-46fd-4e36-b1b6-b95d41a3e833\",\"name\":\"84dbd276-46fd-4e36-b1b6-b95d41a3e833\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:47:57.921182Z\",\"endTime\":\"2020-05-07T11:47:59.7806748Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"e914eb97-2f94-452f-863d-0e7133af86c8\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/285890a4-5f39-4c15-af4f-bc26496fd3bd\",\"name\":\"285890a4-5f39-4c15-af4f-bc26496fd3bd\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:49:43.267229Z\",\"endTime\":\"2020-08-02T23:49:46.1268927Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"3f7c9596-979b-4fcc-9755-6bf039066f54\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/84dbd276-46fd-4e36-b1b6-b95d41a3e833?api-version=2020-02-15\u0026operationResultResponseType=Location+12": { + "New-AzKustoAttachedDatabaseConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/285890a4-5f39-4c15-af4f-bc26496fd3bd?api-version=2020-06-14\u0026operationResultResponseType=Location+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/84dbd276-46fd-4e36-b1b6-b95d41a3e833?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/285890a4-5f39-4c15-af4f-bc26496fd3bd?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "233", "234", "235" ], - "x-ms-client-request-id": [ "ce7a9f85-7415-4578-96dd-62021cd1e7e1", "ce7a9f85-7415-4578-96dd-62021cd1e7e1", "ce7a9f85-7415-4578-96dd-62021cd1e7e1" ], + "x-ms-unique-id": [ "261", "262", "263" ], + "x-ms-client-request-id": [ "6dc9db64-3cd7-4176-9831-73e437335716", "6dc9db64-3cd7-4176-9831-73e437335716", "6dc9db64-3cd7-4176-9831-73e437335716" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -459,15 +459,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bbcf62bb-1776-467c-b8f8-4fa42c37cf72" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "00487348-a5de-48e4-b10a-138a67543dad" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-correlation-request-id": [ "b6eefcca-0beb-41da-bcd6-2843e03adb51" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114828Z:b6eefcca-0beb-41da-bcd6-2843e03adb51" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-correlation-request-id": [ "17af88c0-a132-44f9-98e0-15dd84894107" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235013Z:17af88c0-a132-44f9-98e0-15dd84894107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:48:27 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:50:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/New-AzKustoCluster.Recording.json b/src/Kusto/test/New-AzKustoCluster.Recording.json index cc5a3c392aa1..0b07251e1f17 100644 --- a/src/Kusto/test/New-AzKustoCluster.Recording.json +++ b/src/Kusto/test/New-AzKustoCluster.Recording.json @@ -1,8 +1,8 @@ { - "New-AzKustoCluster+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15+1": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", "Content": "{\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "2a439ba5-7349-4cdd-88f2-501eebdd0f00" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "a81c874f-4e86-430a-99d5-b6e15c7f08c7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "42a0b308-2b9c-4204-8764-83efb9699368" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114832Z:42a0b308-2b9c-4204-8764-83efb9699368" ], + "x-ms-correlation-request-id": [ "500e936f-be67-4a1b-b1ca-afef25ead2b3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235018Z:500e936f-be67-4a1b-b1ca-afef25ead2b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:48:31 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:50:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "356" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf\",\"name\":\"testclusteri6wlsf\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\"},\"properties\":{\"state\":\"Creating\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho\",\"name\":\"testclustersu8yho\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\"},\"properties\":{\"state\":\"Creating\",\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+2": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ce406be3-8e84-415e-b4a4-d31f6c06846c" ], - "x-ms-request-id": [ "2a55bf58-d472-48d3-ab88-53ce4660b40f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "a8642258-1379-4b1b-993b-336f262b6990" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114902Z:ce406be3-8e84-415e-b4a4-d31f6c06846c" ], + "x-ms-correlation-request-id": [ "80da006a-0db1-4d54-9734-696f7172011a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235048Z:80da006a-0db1-4d54-9734-696f7172011a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:49:01 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:50:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+3": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -100,32 +100,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "x-ms-request-id": [ "c99bd8db-07a5-4a17-abab-3fa0d1f18e22" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "98097770-d977-455d-bea2-c6a2bed7ed5f" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "707247c4-27d9-490c-ae6e-1aa81f2f5422" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T114933Z:707247c4-27d9-490c-ae6e-1aa81f2f5422" ], + "x-ms-correlation-request-id": [ "c08256d6-f793-4721-8076-775f669d6d4e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235119Z:c08256d6-f793-4721-8076-775f669d6d4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:49:32 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:51:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+4": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -141,32 +141,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "b8b0b707-c41b-4b73-bd03-1526ff1acdc2" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "de5eeaa6-7c3f-4623-8a41-b946279e1f43" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a9f371ef-2d4e-4a07-b835-b91d0af579eb" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115003Z:a9f371ef-2d4e-4a07-b835-b91d0af579eb" ], + "x-ms-correlation-request-id": [ "14fa8b2b-bfe9-47fb-9b56-dbffcde03b20" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235149Z:14fa8b2b-bfe9-47fb-9b56-dbffcde03b20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:50:02 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:51:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+5": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -182,32 +182,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0aefbb56-78ae-4292-80ed-af8a4cb593d9" ], - "x-ms-request-id": [ "5f027801-056c-4fac-933e-a68c3afbfee1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "3721397b-d412-4cf5-bc07-5f2cf5bea600" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115033Z:0aefbb56-78ae-4292-80ed-af8a4cb593d9" ], + "x-ms-correlation-request-id": [ "6c659552-ea91-4b07-94ad-f29bfad06483" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235219Z:6c659552-ea91-4b07-94ad-f29bfad06483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:50:32 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:52:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+6": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,32 +223,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "b4910714-893b-48de-a28a-67ee0ae2a777" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "9bedad82-375c-4b17-9cb3-7934a01cf7d0" ], + "x-ms-request-id": [ "fa1ee68b-2941-43fd-8585-7a3b80854bb7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "878de63c-05fd-4e98-9885-5853701eb978" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115104Z:878de63c-05fd-4e98-9885-5853701eb978" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235249Z:9bedad82-375c-4b17-9cb3-7934a01cf7d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:51:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:52:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:50:17.7048615Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+7": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -264,32 +264,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "67c10911-6477-445c-96c1-ed3649c48722" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "5468a8a4-8dba-4b04-8b41-c4979214729c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "138dabcd-d605-4e6b-b2ba-43ac8cb9b0c4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115134Z:138dabcd-d605-4e6b-b2ba-43ac8cb9b0c4" ], + "x-ms-correlation-request-id": [ "4369c58d-03e1-43b6-bb6a-f7549a419743" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235320Z:4369c58d-03e1-43b6-bb6a-f7549a419743" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:51:33 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:53:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+8": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -305,32 +305,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "46b87d94-9bc2-49f2-be68-dafb0e36b151" ], - "x-ms-request-id": [ "f7c63b5a-7653-4172-9eff-df32c36a4392" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "a874528b-9ec3-4acd-ac32-c880e4a2f21d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115204Z:46b87d94-9bc2-49f2-be68-dafb0e36b151" ], + "x-ms-correlation-request-id": [ "cf421a11-8cf3-4beb-abe5-204ec44bd6e5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235350Z:cf421a11-8cf3-4beb-abe5-204ec44bd6e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:52:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:53:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+9": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -346,32 +346,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "a7cf9893-7c06-4654-8a65-09dd7bbf7354" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "1686d447-c5c2-4f98-bd93-9b8c667b8f98" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ecb5a3b1-5169-4600-9339-01a31d60482a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115235Z:ecb5a3b1-5169-4600-9339-01a31d60482a" ], + "x-ms-correlation-request-id": [ "501cafa3-c76b-4631-aa3f-7d6bcb2635bf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235420Z:501cafa3-c76b-4631-aa3f-7d6bcb2635bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:52:34 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:54:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+10": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -387,32 +387,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "1017c96b-2322-4252-85b5-fdc26266fde9" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-request-id": [ "29877e5d-5b6b-4f4b-8ed7-806b4ed1116c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d12d1ea1-5ecb-44d8-b836-e7bf7febb1de" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115305Z:d12d1ea1-5ecb-44d8-b836-e7bf7febb1de" ], + "x-ms-correlation-request-id": [ "11f91c23-38d1-411a-a208-683f065ab45a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235451Z:11f91c23-38d1-411a-a208-683f065ab45a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:53:04 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:54:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+11": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -428,32 +428,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "cd096b49-c3b7-4d35-9682-ef0c36450b0a" ], - "x-ms-request-id": [ "f0b53a25-ffb1-40b8-8e42-2654602fe366" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "57f0b092-9212-410d-8643-a6913880c6ce" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115335Z:cd096b49-c3b7-4d35-9682-ef0c36450b0a" ], + "x-ms-correlation-request-id": [ "f016e20e-d173-4459-9903-5326aa5601f1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235521Z:f016e20e-d173-4459-9903-5326aa5601f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:53:35 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:55:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+12": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -469,32 +469,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "eb4de4cd-9982-4de3-a85c-9a1f3f0e79b8" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "11ed5215-10e4-467c-a150-4e59c41a9a15" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "74d41f28-4b4f-451b-b505-0da517225255" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115406Z:74d41f28-4b4f-451b-b505-0da517225255" ], + "x-ms-correlation-request-id": [ "ff775213-8359-4bc8-bcbe-36ddaf816d02" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235551Z:ff775213-8359-4bc8-bcbe-36ddaf816d02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:54:05 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:55:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+13": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -510,32 +510,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "eaeea636-b2fa-4fb8-9fc6-5e710e4e760e" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "efbff629-9c30-454f-bd06-85a7cf3aaf73" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "20cc0981-bae3-4cd8-b399-730093a1c074" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115436Z:20cc0981-bae3-4cd8-b399-730093a1c074" ], + "x-ms-correlation-request-id": [ "199a20bd-0293-4481-88fb-ba73aaf3b048" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235621Z:199a20bd-0293-4481-88fb-ba73aaf3b048" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:54:35 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:56:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+14": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -551,32 +551,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8185c729-c1e1-4f1d-971b-cb3161c4c9ff" ], - "x-ms-request-id": [ "68e526a6-063c-4ddc-ba04-dce8aac3146f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "8243ff2e-2538-47e0-8024-0c0cf1cdda1e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115506Z:8185c729-c1e1-4f1d-971b-cb3161c4c9ff" ], + "x-ms-correlation-request-id": [ "3e6f13a2-b41b-42e6-8607-9224c1091f42" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235651Z:3e6f13a2-b41b-42e6-8607-9224c1091f42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:55:06 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:56:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+15": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -592,32 +592,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "468a9048-8a92-4d42-9db2-98d97584e59b" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "66cf663b-4334-45d3-bd50-d6fb5a213aa2" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "922c4a00-83ea-4fd8-8244-6553e7bcf5e2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115537Z:922c4a00-83ea-4fd8-8244-6553e7bcf5e2" ], + "x-ms-correlation-request-id": [ "3e0e1406-8a76-4086-b5e1-8adcb9b3c00c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235722Z:3e0e1406-8a76-4086-b5e1-8adcb9b3c00c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:55:37 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:57:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+16": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -633,32 +633,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "66d5f0e1-dbea-4364-835d-b355b20a2cb5" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "45c98daf-e5b5-4f2c-b6f3-39166a7e62cd" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5596161b-f40f-49c3-af0b-b424ff8f694b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115607Z:5596161b-f40f-49c3-af0b-b424ff8f694b" ], + "x-ms-correlation-request-id": [ "fbbbf29d-707e-4c47-8b36-20811d1500d9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235752Z:fbbbf29d-707e-4c47-8b36-20811d1500d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:56:06 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:57:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+17": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -674,32 +674,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "dac33448-e4bc-4497-924c-3579aadb4a1e" ], - "x-ms-request-id": [ "cdef190b-afc2-489f-a4f9-f0559a94d809" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "4a12db7d-948c-4094-ac06-89944531bb4d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115637Z:dac33448-e4bc-4497-924c-3579aadb4a1e" ], + "x-ms-correlation-request-id": [ "b41c5427-c0fb-4173-85ae-d17a344f22df" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235822Z:b41c5427-c0fb-4173-85ae-d17a344f22df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:56:37 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:58:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+18": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -715,32 +715,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "cd3bc9ed-457e-4ab6-bb8e-c6384eae9943" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "5de160df-3c6d-40c7-8bb4-5c7b4eeb17ca" ], + "x-ms-request-id": [ "46de034b-d1f5-4994-a6c8-efbd577a411f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b0611164-f92f-4e1f-ad77-a131ef4364cb" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115708Z:b0611164-f92f-4e1f-ad77-a131ef4364cb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235852Z:5de160df-3c6d-40c7-8bb4-5c7b4eeb17ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:57:07 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:58:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+19": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -756,32 +756,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "909aeb3b-a8b3-42d3-aa3d-529effa18050" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "604e2b4a-9077-447f-a2e5-566ea242552d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4303caf2-f255-46cd-9425-19d0af05a892" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115738Z:4303caf2-f255-46cd-9425-19d0af05a892" ], + "x-ms-correlation-request-id": [ "4a2205ee-a50e-4c5b-adf1-f09f6131fcfd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235923Z:4a2205ee-a50e-4c5b-adf1-f09f6131fcfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:57:38 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:59:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+20": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -797,32 +797,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "23133761-2e96-4b4e-8f4d-6ad80f2ceb4c" ], - "x-ms-request-id": [ "f5eeeffb-e5b7-4b47-8c4a-5744af476b67" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "8e963e00-d994-48f0-914c-fd202fa7efba" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115808Z:23133761-2e96-4b4e-8f4d-6ad80f2ceb4c" ], + "x-ms-correlation-request-id": [ "3c24257f-1293-4cb0-abd2-36dd57e6ee86" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200802T235953Z:3c24257f-1293-4cb0-abd2-36dd57e6ee86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:58:08 GMT" ] + "Date": [ "Sun, 02 Aug 2020 23:59:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+21": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -838,32 +838,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "250f7521-96bd-45cc-9d05-3be0123b6472" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "29c4c0d0-6198-49ec-b2ad-7b1e98d81a28" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "230eb3e0-926c-4980-9577-7fe7612b4466" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115839Z:230eb3e0-926c-4980-9577-7fe7612b4466" ], + "x-ms-correlation-request-id": [ "b9b0fcff-9203-4374-9ea6-ba472862f923" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000023Z:b9b0fcff-9203-4374-9ea6-ba472862f923" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:58:38 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:00:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+22": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -879,32 +879,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "67f03196-42ed-4972-840b-f351c34c246e" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "6529a522-5173-4f70-b10b-7d93683b41ba" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "87634121-5da7-49e9-a911-ef868d0cb37b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115909Z:87634121-5da7-49e9-a911-ef868d0cb37b" ], + "x-ms-correlation-request-id": [ "6e3f8539-33e6-468c-a3e6-11bc55282e28" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000054Z:6e3f8539-33e6-468c-a3e6-11bc55282e28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:59:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:00:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+23": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -920,32 +920,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "df4a9b59-f1f0-41af-87d3-f148652398bd" ], - "x-ms-request-id": [ "b3ce3f31-0605-4504-9a50-2a43ff6ccf83" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "5f4bf0b0-8f34-43ce-97f0-93c4a4880a55" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T115939Z:df4a9b59-f1f0-41af-87d3-f148652398bd" ], + "x-ms-correlation-request-id": [ "07b39e94-41f7-4dd6-a3bf-9726bdb049d8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000124Z:07b39e94-41f7-4dd6-a3bf-9726bdb049d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 11:59:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:01:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+24": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -961,32 +961,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "978d9e6e-a578-4569-89b7-eec344dd7bcd" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "47d5b1c5-d447-4ff5-b9c0-272dd4549300" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f3c5dbe0-8146-4ac5-8c25-df5647efa20a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120010Z:f3c5dbe0-8146-4ac5-8c25-df5647efa20a" ], + "x-ms-correlation-request-id": [ "448c3c97-5e46-4c45-9a6d-604cbd4bbe3c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000154Z:448c3c97-5e46-4c45-9a6d-604cbd4bbe3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:00:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:01:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+25": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1002,32 +1002,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "c3f2bac0-a59a-4067-afc5-fd8337fa3327" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "28ff2909-b04d-4d03-ab93-1e607837f2c9" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "63fce7c0-43dd-4fef-bad9-a92d05a05a1b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120040Z:63fce7c0-43dd-4fef-bad9-a92d05a05a1b" ], + "x-ms-correlation-request-id": [ "0a98303d-d6d2-43c9-ad2e-698b1e5bee68" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000224Z:0a98303d-d6d2-43c9-ad2e-698b1e5bee68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:00:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:02:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Running\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T11:48:35.0570922Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15+26": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1043,32 +1043,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "319696af-f124-4e6d-ab71-89287f5f76c6" ], - "x-ms-request-id": [ "ee1a2130-2b01-462d-a596-6f9c12535de7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "1a7347fe-53e9-4d04-85be-5f68208c54d1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120111Z:319696af-f124-4e6d-ab71-89287f5f76c6" ], + "x-ms-correlation-request-id": [ "9f5d778b-9c42-4961-b3b1-9f396e51e310" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000254Z:9f5d778b-9c42-4961-b3b1-9f396e51e310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:01:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:02:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "500" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"name\":\"d3b20d3d-3de7-4316-8a3b-2f54d4b59f56\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T11:48:31.8227098Z\",\"endTime\":\"2020-05-07T12:01:10.7954205Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"feef7911-89bb-4047-a85c-2bbfb3ff8039\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15+27": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261", "262" ], - "x-ms-client-request-id": [ "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d", "1a4f31fb-da3b-44e5-96ee-a5afc8023f0d" ], + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1078,6 +1078,88 @@ "ContentHeaders": { } }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "47dd80d1-3fd7-4cca-ba50-be12e01a2505" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "8e74cf3a-a9c1-470e-8108-24c2a236e2d2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000325Z:8e74cf3a-a9c1-470e-8108-24c2a236e2d2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 03 Aug 2020 00:03:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "500" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Running\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-02T23:52:58.0366533Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" + } + }, + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14+28": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20955988-a981-43e8-a72a-8cca62ba2016?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], + "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], + "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "d910a791-aa06-42bd-9c2d-758decb02f7a" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-correlation-request-id": [ "b8937b4e-d681-49f2-9463-72f17120ab31" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000355Z:b8937b4e-d681-49f2-9463-72f17120ab31" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 03 Aug 2020 00:03:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "503" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20955988-a981-43e8-a72a-8cca62ba2016\",\"name\":\"20955988-a981-43e8-a72a-8cca62ba2016\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-02T23:50:17.7048615Z\",\"endTime\":\"2020-08-03T00:03:44.2484488Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"b2af0535-6967-46b8-9066-cc9425e75cbf\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" + } + }, + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "292" ], + "x-ms-client-request-id": [ "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3", "3b53ff89-3d62-4df8-ab3d-a0ea5c80eaa3" ], + "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], + "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, "Response": { "StatusCode": 200, "Headers": { @@ -1086,31 +1168,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "d82151d4-e23f-438f-b512-3346c19ead54" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "c1707f8a-7782-4d50-a2b3-4fb229d90a81" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "adb6efc3-9cd1-449d-803e-90729f9529f7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120111Z:adb6efc3-9cd1-449d-803e-90729f9529f7" ], + "x-ms-correlation-request-id": [ "c9b7d0b4-ab5f-4ee3-a900-8ca4d747490f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000355Z:c9b7d0b4-ab5f-4ee3-a900-8ca4d747490f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:01:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:03:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf\",\"name\":\"testclusteri6wlsf\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusteri6wlsf.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusteri6wlsf.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho\",\"name\":\"testclustersu8yho\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclustersu8yho.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclustersu8yho.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15+28": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+30": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1125,17 +1207,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], - "x-ms-request-id": [ "4f85676b-4eac-4c1f-94a6-aada58fc566d" ], - "x-ms-correlation-request-id": [ "4f85676b-4eac-4c1f-94a6-aada58fc566d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120112Z:4f85676b-4eac-4c1f-94a6-aada58fc566d" ], + "x-ms-request-id": [ "69cf8aa1-8f57-4911-adce-3c470356bdbc" ], + "x-ms-correlation-request-id": [ "69cf8aa1-8f57-4911-adce-3c470356bdbc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000356Z:69cf8aa1-8f57-4911-adce-3c470356bdbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:01:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:03:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1144,14 +1226,14 @@ "Content": null } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+29": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1167,32 +1249,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "f9296f12-ef9b-43cb-b177-edf33084a31c" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "b26ce906-cd29-4b5c-9a25-4ed37cc704e9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d66f4d9c-c483-4145-a8f8-2ac655f7419f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120142Z:d66f4d9c-c483-4145-a8f8-2ac655f7419f" ], + "x-ms-correlation-request-id": [ "58e25ca0-7acb-43dc-9f7f-dd539ce7c7ac" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000426Z:58e25ca0-7acb-43dc-9f7f-dd539ce7c7ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:01:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:04:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+30": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1208,32 +1290,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "605973a3-67fb-46e1-a482-d8ab9c358419" ], - "x-ms-request-id": [ "38d2336b-0f87-4c87-bbca-ac4d5ced1b61" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "006dc294-0b2c-433b-9eab-63a160b84021" ], + "x-ms-request-id": [ "2c6bb53d-7e86-4067-846c-488d0a1076a7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120212Z:605973a3-67fb-46e1-a482-d8ab9c358419" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000456Z:006dc294-0b2c-433b-9eab-63a160b84021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:02:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:04:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+31": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1249,32 +1331,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "bf79a460-c92f-4c02-aa52-5c19aa90d716" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "76a7afb8-0fc4-4905-a849-45937583e0df" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a5e00f4a-3a05-480e-83a4-2401e88257dd" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120243Z:a5e00f4a-3a05-480e-83a4-2401e88257dd" ], + "x-ms-correlation-request-id": [ "d61736bd-be3c-4c84-ab26-31e950d312fb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000527Z:d61736bd-be3c-4c84-ab26-31e950d312fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:02:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:05:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+32": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1290,32 +1372,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "e943a19a-24b0-4745-a574-c40fd0487eee" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "02b337d3-3845-4fe8-a9fe-864b676674fc" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b7195af2-5efe-47e5-b3b1-9086fd1bfcdd" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120313Z:b7195af2-5efe-47e5-b3b1-9086fd1bfcdd" ], + "x-ms-correlation-request-id": [ "5c640959-8f21-46e1-8b7d-af9489ccfeb7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000557Z:5c640959-8f21-46e1-8b7d-af9489ccfeb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:03:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:05:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+33": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1331,32 +1413,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "5bcb4a42-a244-46e1-9e7e-6df03948fee6" ], - "x-ms-request-id": [ "42b3dae6-6a73-4f3b-80cb-3a40db5a6678" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "ccce6766-fa1c-4190-8686-51785c71c6f8" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120343Z:5bcb4a42-a244-46e1-9e7e-6df03948fee6" ], + "x-ms-correlation-request-id": [ "5333c649-9021-454b-bcc7-2c8588491d85" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000627Z:5333c649-9021-454b-bcc7-2c8588491d85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:03:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:06:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+34": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1372,32 +1454,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "0164bade-6c45-47d4-8619-c31edea944d0" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "9073b0b6-dbae-4d3d-8485-b4058c67a13d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "99e5949c-1073-4c13-a23b-3d512088c24f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120414Z:99e5949c-1073-4c13-a23b-3d512088c24f" ], + "x-ms-correlation-request-id": [ "f29a9215-b274-467e-8a11-0b5ad1415734" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000658Z:f29a9215-b274-467e-8a11-0b5ad1415734" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:04:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:06:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+35": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1413,32 +1495,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "cf5311ab-be12-4cd8-a7bd-1623d8bf08ed" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "b73a8559-e74d-4b6a-b251-b77e5ce9cfda" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d0e7d4c6-641d-4d00-9e6d-62e6ebad521f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120444Z:d0e7d4c6-641d-4d00-9e6d-62e6ebad521f" ], + "x-ms-correlation-request-id": [ "0f90fde7-9cfd-44c9-9cb3-901403bd97b4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000728Z:0f90fde7-9cfd-44c9-9cb3-901403bd97b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:04:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+36": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1454,32 +1536,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "5463ac85-8749-4b0a-820a-08c0833ef54b" ], - "x-ms-request-id": [ "e0280348-360d-4d0d-93fe-2229fb5732ca" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "4c4db66f-88ed-43f9-8827-1592ecd57ff7" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120514Z:5463ac85-8749-4b0a-820a-08c0833ef54b" ], + "x-ms-correlation-request-id": [ "66c45bb4-f69b-42e0-843d-6bad14820caa" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000758Z:66c45bb4-f69b-42e0-843d-6bad14820caa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:05:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:07:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+37": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1495,32 +1577,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "39efc97e-9e68-4c25-96d6-2add06c906c7" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "03906d18-a0db-49c1-917a-91a7976cc623" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7c04080d-bd90-47bd-8571-7b46804dbaf1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120545Z:7c04080d-bd90-47bd-8571-7b46804dbaf1" ], + "x-ms-correlation-request-id": [ "d28de9fe-b329-4b1d-9f90-f4772b57534e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000828Z:d28de9fe-b329-4b1d-9f90-f4772b57534e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:05:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:08:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+38": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1536,32 +1618,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "a282127a-21d5-4694-b03a-51a73cf56b71" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "29294192-c691-4084-bd6d-e1742c988357" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c12e4d0a-d8b2-430b-bba2-ffeaac34b64a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120615Z:c12e4d0a-d8b2-430b-bba2-ffeaac34b64a" ], + "x-ms-correlation-request-id": [ "a8d834f3-640b-4af0-809b-403b21b362db" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000859Z:a8d834f3-640b-4af0-809b-403b21b362db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:06:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:08:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+39": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1577,32 +1659,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "64eaf945-128a-4798-a6fb-c4f66ab04cc1" ], - "x-ms-request-id": [ "cf44b400-2c1a-4c2d-a634-b3580a663d47" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "ba77372a-99c3-464f-944d-b9a79afae334" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120645Z:64eaf945-128a-4798-a6fb-c4f66ab04cc1" ], + "x-ms-correlation-request-id": [ "822f5a72-a940-4d55-9ea1-e98f3f604d6e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000929Z:822f5a72-a940-4d55-9ea1-e98f3f604d6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:06:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:09:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+40": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+42": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1618,32 +1700,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "f19300f5-44a8-41ad-b548-f967d7d00f54" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "2db5023e-655d-4286-9e5f-d9721052b105" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7f06e4ee-ab22-40fc-808f-0b6ee1c40d5f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120716Z:7f06e4ee-ab22-40fc-808f-0b6ee1c40d5f" ], + "x-ms-correlation-request-id": [ "31db738a-d25d-4c27-8952-5c2944651082" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T000959Z:31db738a-d25d-4c27-8952-5c2944651082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:07:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:09:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+41": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+43": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1659,32 +1741,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "c1290579-6fca-4574-9fba-5536d5290713" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "d056f07c-8fb3-4fc0-a265-158fb1eef1b9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "30facdd5-744c-461e-a1f2-c8e692d625e0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120746Z:30facdd5-744c-461e-a1f2-c8e692d625e0" ], + "x-ms-correlation-request-id": [ "fea02176-92b9-4c86-9694-6da8912a7261" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001029Z:fea02176-92b9-4c86-9694-6da8912a7261" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:07:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:10:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+42": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+44": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306", "307" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1700,32 +1782,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "fdfd50eb-4ea4-4501-9a8d-0b3a362c64ed" ], - "x-ms-request-id": [ "14d57500-90c9-4b83-81ee-1eec6e81b615" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "631eb99a-ea0d-4a66-b658-6bfe33cde6bc" ], + "x-ms-request-id": [ "4e171415-b450-45f4-a616-065894409c3e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120816Z:fdfd50eb-4ea4-4501-9a8d-0b3a362c64ed" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001101Z:631eb99a-ea0d-4a66-b658-6bfe33cde6bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:08:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:11:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+43": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+45": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306", "307", "308" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1741,32 +1823,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "6085ee26-c07e-4c74-98e2-5e0165cd789c" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "461438e1-472d-4c2f-aa29-4e3539c6424c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bc08c1f5-82cc-4fe3-94af-266229ada5dc" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120847Z:bc08c1f5-82cc-4fe3-94af-266229ada5dc" ], + "x-ms-correlation-request-id": [ "132643ad-c3ae-4622-ba50-0d9109aa8e15" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001132Z:132643ad-c3ae-4622-ba50-0d9109aa8e15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:08:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:11:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:03:57.1154066Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+44": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+46": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306", "307", "308", "309" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1782,32 +1864,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "49db19a7-a99d-4b1f-995a-0b7c6a120e28" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "d2dedb05-d017-4993-b943-fbfe5f83932e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a0d7f56e-d29d-414d-b4ff-6daa090d8279" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120917Z:a0d7f56e-d29d-414d-b4ff-6daa090d8279" ], + "x-ms-correlation-request-id": [ "d7282c63-2d17-4958-b008-dae5ddc813fc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001203Z:d7282c63-2d17-4958-b008-dae5ddc813fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:09:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:12:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:11:57.5129087Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+45": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14+47": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306", "307", "308", "309", "310" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1823,32 +1905,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "61435f99-6bb1-4443-a83a-2fc39cf7d76f" ], - "x-ms-request-id": [ "6d9aafcb-ccd5-43c9-b557-03b6ab94d77d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "d2ba048b-da8a-4d51-9c2e-dd26108136cc" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T120947Z:61435f99-6bb1-4443-a83a-2fc39cf7d76f" ], + "x-ms-correlation-request-id": [ "9266e919-fd40-4f6a-b07d-22518d610dbb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001236Z:9266e919-fd40-4f6a-b07d-22518d610dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:09:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:12:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"name\":\"bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:03:56.1465774Z\",\"endTime\":\"2020-08-03T00:12:08.0606575Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"4fc8d72c-e817-4382-bee7-56731a5d3561\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+46": { + "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14\u0026operationResultResponseType=Location+48": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bbb90e2a-69ea-4b40-a8ee-779fb5dc8da3?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], + "x-ms-unique-id": [ "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306", "307", "308", "309", "310", "311" ], + "x-ms-client-request-id": [ "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c", "45595bfc-0d89-468c-9c1a-2cda1804fe4c" ], "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1863,220 +1945,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "364c71ab-f864-4d49-ac54-578e34f8c7d9" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "71ef8ad5-d917-454a-9503-deaba4000fd8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121018Z:71ef8ad5-d917-454a-9503-deaba4000fd8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:10:18 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" - } - }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+47": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "2d08167b-5e1b-4354-ba16-d3a9960f9927" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ce411517-b56a-461c-a682-f088ff4d1f38" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121050Z:ce411517-b56a-461c-a682-f088ff4d1f38" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:10:49 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" - } - }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+48": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "18e863b8-419c-4bbb-adc8-d3d96434a3d5" ], - "x-ms-request-id": [ "649554d1-52d9-45bb-bdf1-5adc3b050c6d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121120Z:18e863b8-419c-4bbb-adc8-d3d96434a3d5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:11:20 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" - } - }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+49": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "89544668-554c-4fd6-b42e-62417748aee7" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4373d266-a6fc-4409-8be9-53547073abf3" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121151Z:4373d266-a6fc-4409-8be9-53547073abf3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:11:50 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:01:12.7954593Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Running\"}}" - } - }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15+50": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "69b8d645-9e66-48b7-8d6e-7d2b96659569" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "99016400-e708-4580-893d-bd99d29fcea2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121221Z:99016400-e708-4580-893d-bd99d29fcea2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:20 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "466" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"name\":\"03fbc3cb-182d-448b-908a-6568a10eb7f3\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:01:12.1392225Z\",\"endTime\":\"2020-05-07T12:12:04.6024557Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"e843c83f-582f-4c47-a255-96dcfd6ef904\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "New-AzKustoCluster+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15\u0026operationResultResponseType=Location+51": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/03fbc3cb-182d-448b-908a-6568a10eb7f3?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286" ], - "x-ms-client-request-id": [ "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb", "730442e6-6638-40d2-9af4-adc4df55e1eb" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1b3cb5fd-55cd-46ae-bcad-84e8c2f54c57" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "b054e300-5f61-458c-b29d-5a9d3412f9b1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-correlation-request-id": [ "33d8c519-ba96-4623-9536-c61769fdd21e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121221Z:33d8c519-ba96-4623-9536-c61769fdd21e" ], + "x-ms-correlation-request-id": [ "6db8ede0-6aa6-4c52-b7d0-6b924d1f87c2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001237Z:6db8ede0-6aa6-4c52-b7d0-6b924d1f87c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:12:36 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json b/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json index 09700cc15d0a..b1d885b5c0f0 100644 --- a/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json +++ b/src/Kusto/test/New-AzKustoClusterPrincipalAssignment.Recording.json @@ -1,8 +1,8 @@ { - "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": "{\r\n \"properties\": {\r\n \"principalId\": \"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\r\n \"principalType\": \"App\",\r\n \"role\": \"AllDatabasesViewer\"\r\n }\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "b75ab6c8-a294-45a4-956c-2070661414ab" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3f4bb2e2-4991-49cb-910f-d5563d9e905d?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "9ac3ab04-6fb3-420a-beb2-06929649f953" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4232d14f-e950-46cd-8598-243d9cf300b8?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "697e6d52-8906-47a2-a9a6-dfe770452082" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121222Z:697e6d52-8906-47a2-a9a6-dfe770452082" ], + "x-ms-correlation-request-id": [ "6569a0a3-fd5c-4113-996f-b7617ed33d70" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001240Z:6569a0a3-fd5c-4113-996f-b7617ed33d70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:12:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "452" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"AllDatabasesViewer\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"AllDatabasesViewer\",\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3f4bb2e2-4991-49cb-910f-d5563d9e905d?api-version=2020-02-15+2": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4232d14f-e950-46cd-8598-243d9cf300b8?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3f4bb2e2-4991-49cb-910f-d5563d9e905d?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4232d14f-e950-46cd-8598-243d9cf300b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "287", "288" ], - "x-ms-client-request-id": [ "cf73cad1-a85c-44a1-9026-6a904982a8ff", "cf73cad1-a85c-44a1-9026-6a904982a8ff" ], + "x-ms-unique-id": [ "312", "313" ], + "x-ms-client-request-id": [ "f5ccff99-a000-4d76-9b92-f9e9b0427611", "f5ccff99-a000-4d76-9b92-f9e9b0427611" ], "CommandName": [ "New-AzKustoClusterPrincipalAssignment", "New-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "New-AzKustoClusterPrincipalAssignment_CreateExpanded", "New-AzKustoClusterPrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0da532bf-48da-41ab-a2ec-a771f99bf4a3" ], - "x-ms-request-id": [ "91cf1776-b6c4-4824-b473-4049bbd263ae" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "9b8525f2-9e67-4b1d-ad3e-351d2dff6b50" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121253Z:0da532bf-48da-41ab-a2ec-a771f99bf4a3" ], + "x-ms-correlation-request-id": [ "134fdef8-9f52-4067-aceb-5232cc685dc4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001311Z:134fdef8-9f52-4067-aceb-5232cc685dc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:13:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "483" ], + "Content-Length": [ "512" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3f4bb2e2-4991-49cb-910f-d5563d9e905d\",\"name\":\"3f4bb2e2-4991-49cb-910f-d5563d9e905d\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:12:22.7840861Z\",\"endTime\":\"2020-05-07T12:12:24.2532839Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"00b77734-c1a3-4513-b1d5-f710516fc7bf\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4232d14f-e950-46cd-8598-243d9cf300b8\",\"name\":\"4232d14f-e950-46cd-8598-243d9cf300b8\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:12:40.6727637Z\",\"endTime\":\"2020-08-03T00:12:42.9073189Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"40218c37-2a65-477f-9775-04c700e8d296\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+3": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "287", "288", "289" ], - "x-ms-client-request-id": [ "cf73cad1-a85c-44a1-9026-6a904982a8ff", "cf73cad1-a85c-44a1-9026-6a904982a8ff", "cf73cad1-a85c-44a1-9026-6a904982a8ff" ], + "x-ms-unique-id": [ "312", "313", "314" ], + "x-ms-client-request-id": [ "f5ccff99-a000-4d76-9b92-f9e9b0427611", "f5ccff99-a000-4d76-9b92-f9e9b0427611", "f5ccff99-a000-4d76-9b92-f9e9b0427611" ], "CommandName": [ "New-AzKustoClusterPrincipalAssignment", "New-AzKustoClusterPrincipalAssignment", "New-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "New-AzKustoClusterPrincipalAssignment_CreateExpanded", "New-AzKustoClusterPrincipalAssignment_CreateExpanded", "New-AzKustoClusterPrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -102,31 +102,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "a1c88018-7581-4499-8bda-307451196fd1" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "2c6f0642-62c2-4bba-b8f1-47ea1df1ac30" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "086c4079-c90e-4ef3-a7dd-ef40208ca301" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121253Z:086c4079-c90e-4ef3-a7dd-ef40208ca301" ], + "x-ms-correlation-request-id": [ "43436e59-654b-4874-8903-d13a6f03ff4b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001319Z:43436e59-654b-4874-8903-d13a6f03ff4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:13:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "570" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+4": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "290" ], - "x-ms-client-request-id": [ "299e9d44-9460-4c00-a730-60f1d052afb2" ], + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "be25e96a-a4ce-4a59-a5a4-aac710edc423" ], "CommandName": [ "Remove-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoClusterPrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,17 +141,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8424683e-933d-4421-920f-2ea8583e1015?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8424683e-933d-4421-920f-2ea8583e1015?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d8af558e-6b32-4ee0-83c1-15470f2b9085?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d8af558e-6b32-4ee0-83c1-15470f2b9085?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], - "x-ms-request-id": [ "258caa24-d343-469d-9c65-433f1d4dac1e" ], - "x-ms-correlation-request-id": [ "258caa24-d343-469d-9c65-433f1d4dac1e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121254Z:258caa24-d343-469d-9c65-433f1d4dac1e" ], + "x-ms-request-id": [ "52129634-4c4e-4a32-9e3f-bb2f6217431b" ], + "x-ms-correlation-request-id": [ "52129634-4c4e-4a32-9e3f-bb2f6217431b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001323Z:52129634-4c4e-4a32-9e3f-bb2f6217431b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:12:54 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:13:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -160,14 +160,14 @@ "Content": null } }, - "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8424683e-933d-4421-920f-2ea8583e1015?api-version=2020-02-15+5": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d8af558e-6b32-4ee0-83c1-15470f2b9085?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8424683e-933d-4421-920f-2ea8583e1015?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d8af558e-6b32-4ee0-83c1-15470f2b9085?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "290", "291" ], - "x-ms-client-request-id": [ "299e9d44-9460-4c00-a730-60f1d052afb2", "299e9d44-9460-4c00-a730-60f1d052afb2" ], + "x-ms-unique-id": [ "315", "316" ], + "x-ms-client-request-id": [ "be25e96a-a4ce-4a59-a5a4-aac710edc423", "be25e96a-a4ce-4a59-a5a4-aac710edc423" ], "CommandName": [ "Remove-AzKustoClusterPrincipalAssignment", "Remove-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoClusterPrincipalAssignment_Delete", "Remove-AzKustoClusterPrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -184,31 +184,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "85c92898-112b-4717-84c7-42e2f17b5eb6" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "61ae670a-468f-41d8-ab11-82e11dda763c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e9ad481a-5dd9-4eeb-a6a0-fa022222372a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121324Z:e9ad481a-5dd9-4eeb-a6a0-fa022222372a" ], + "x-ms-correlation-request-id": [ "b2b35c05-516b-48b0-88c7-7267cbc7cdb3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001354Z:b2b35c05-516b-48b0-88c7-7267cbc7cdb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:13:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "484" ], + "Content-Length": [ "513" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8424683e-933d-4421-920f-2ea8583e1015\",\"name\":\"8424683e-933d-4421-920f-2ea8583e1015\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:12:54.2185383Z\",\"endTime\":\"2020-05-07T12:12:55.7660857Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"80bd1b78-b1d4-42f8-922a-6df18eda587f\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d8af558e-6b32-4ee0-83c1-15470f2b9085\",\"name\":\"d8af558e-6b32-4ee0-83c1-15470f2b9085\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:13:23.2075247Z\",\"endTime\":\"2020-08-03T00:13:25.3639611Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"5686b57a-aa4c-40ba-bfcb-757c579122e7\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8424683e-933d-4421-920f-2ea8583e1015?api-version=2020-02-15\u0026operationResultResponseType=Location+6": { + "New-AzKustoClusterPrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d8af558e-6b32-4ee0-83c1-15470f2b9085?api-version=2020-06-14\u0026operationResultResponseType=Location+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8424683e-933d-4421-920f-2ea8583e1015?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d8af558e-6b32-4ee0-83c1-15470f2b9085?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "290", "291", "292" ], - "x-ms-client-request-id": [ "299e9d44-9460-4c00-a730-60f1d052afb2", "299e9d44-9460-4c00-a730-60f1d052afb2", "299e9d44-9460-4c00-a730-60f1d052afb2" ], + "x-ms-unique-id": [ "315", "316", "317" ], + "x-ms-client-request-id": [ "be25e96a-a4ce-4a59-a5a4-aac710edc423", "be25e96a-a4ce-4a59-a5a4-aac710edc423", "be25e96a-a4ce-4a59-a5a4-aac710edc423" ], "CommandName": [ "Remove-AzKustoClusterPrincipalAssignment", "Remove-AzKustoClusterPrincipalAssignment", "Remove-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoClusterPrincipalAssignment_Delete", "Remove-AzKustoClusterPrincipalAssignment_Delete", "Remove-AzKustoClusterPrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,15 +223,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fd39cf1d-e5af-47cd-947d-1b2121e2f8c0" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "7ea1f551-e7a7-4e82-9855-469a5a1d24e8" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-correlation-request-id": [ "97b25a6e-c7a1-41fa-91f9-eccbc0e889b9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121324Z:97b25a6e-c7a1-41fa-91f9-eccbc0e889b9" ], + "x-ms-correlation-request-id": [ "dba86c37-b891-4b43-aba2-0b07ed9ecbb5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001354Z:dba86c37-b891-4b43-aba2-0b07ed9ecbb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:13:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/New-AzKustoDataConnection.Recording.json b/src/Kusto/test/New-AzKustoDataConnection.Recording.json index e57102dd4ca9..7711ca1d705b 100644 --- a/src/Kusto/test/New-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/New-AzKustoDataConnection.Recording.json @@ -1,12 +1,12 @@ { - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+1": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "311" ], - "x-ms-client-request-id": [ "853956ba-4b6c-4cb3-aa75-4e455a48a3a9" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "0ec474b8-3b0a-4feb-a2bf-a992647bb53a" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,17 +21,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bb243e96-2136-4f87-b8c2-bdb14d83ef44?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bb243e96-2136-4f87-b8c2-bdb14d83ef44?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/814eb7a2-96d1-4a16-9371-c5fa22e11545?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/814eb7a2-96d1-4a16-9371-c5fa22e11545?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14991" ], - "x-ms-request-id": [ "e4c815c7-9ce6-405d-b2d4-21363aada1ee" ], - "x-ms-correlation-request-id": [ "e4c815c7-9ce6-405d-b2d4-21363aada1ee" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121632Z:e4c815c7-9ce6-405d-b2d4-21363aada1ee" ], + "x-ms-request-id": [ "227f7bd9-1314-4824-bb49-bb1571569ca5" ], + "x-ms-correlation-request-id": [ "227f7bd9-1314-4824-bb49-bb1571569ca5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001808Z:227f7bd9-1314-4824-bb49-bb1571569ca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:18:08 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -40,14 +40,14 @@ "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bb243e96-2136-4f87-b8c2-bdb14d83ef44?api-version=2020-02-15+2": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/814eb7a2-96d1-4a16-9371-c5fa22e11545?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bb243e96-2136-4f87-b8c2-bdb14d83ef44?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/814eb7a2-96d1-4a16-9371-c5fa22e11545?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "311", "312" ], - "x-ms-client-request-id": [ "853956ba-4b6c-4cb3-aa75-4e455a48a3a9", "853956ba-4b6c-4cb3-aa75-4e455a48a3a9" ], + "x-ms-unique-id": [ "336", "337" ], + "x-ms-client-request-id": [ "0ec474b8-3b0a-4feb-a2bf-a992647bb53a", "0ec474b8-3b0a-4feb-a2bf-a992647bb53a" ], "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -63,32 +63,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "9a9b6697-a59c-4df6-99ec-91c17d03fcc8" ], - "x-ms-request-id": [ "2ace87bd-3d74-41b5-9c34-dcb869456325" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "ddf34a4f-24de-4ab8-9283-e83616eef442" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121703Z:9a9b6697-a59c-4df6-99ec-91c17d03fcc8" ], + "x-ms-correlation-request-id": [ "08294f68-f8fd-46c6-86f6-f03a08424452" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001839Z:08294f68-f8fd-46c6-86f6-f03a08424452" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:02 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:18:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bb243e96-2136-4f87-b8c2-bdb14d83ef44\",\"name\":\"bb243e96-2136-4f87-b8c2-bdb14d83ef44\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:16:32.7714037Z\",\"endTime\":\"2020-05-07T12:16:33.6151408Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"7df2f00a-dd3b-44b5-a856-8e510c3e3544\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/814eb7a2-96d1-4a16-9371-c5fa22e11545\",\"name\":\"814eb7a2-96d1-4a16-9371-c5fa22e11545\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:18:08.2625119Z\",\"endTime\":\"2020-08-03T00:18:12.8410184Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"32f0b2e5-b53b-448f-82c8-202a985fa958\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bb243e96-2136-4f87-b8c2-bdb14d83ef44?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/814eb7a2-96d1-4a16-9371-c5fa22e11545?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bb243e96-2136-4f87-b8c2-bdb14d83ef44?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/814eb7a2-96d1-4a16-9371-c5fa22e11545?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "311", "312", "313" ], - "x-ms-client-request-id": [ "853956ba-4b6c-4cb3-aa75-4e455a48a3a9", "853956ba-4b6c-4cb3-aa75-4e455a48a3a9", "853956ba-4b6c-4cb3-aa75-4e455a48a3a9" ], + "x-ms-unique-id": [ "336", "337", "338" ], + "x-ms-client-request-id": [ "0ec474b8-3b0a-4feb-a2bf-a992647bb53a", "0ec474b8-3b0a-4feb-a2bf-a992647bb53a", "0ec474b8-3b0a-4feb-a2bf-a992647bb53a" ], "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -103,15 +103,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6e46e3cf-e887-49a5-85c4-03483fdc0d03" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "eb1d2091-6c2a-4fd1-9cf1-96fa409420cc" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-correlation-request-id": [ "b358e277-3b41-4a37-82be-7b49017a9178" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121703Z:b358e277-3b41-4a37-82be-7b49017a9178" ], + "x-ms-correlation-request-id": [ "0c2e6de9-579f-4f92-bf68-665c486c9429" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001840Z:0c2e6de9-579f-4f92-bf68-665c486c9429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:18:39 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -120,16 +120,16 @@ "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+4": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "429" ] + "Content-Length": [ "333" ] } }, "Response": { @@ -138,33 +138,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "475b2eea-efbf-4a35-b3b0-84c218bf51df" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0eedbf9c-6d85-4fc8-908b-4a183d5e1dfb?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "91f905a4-4f90-4f68-b505-37ee1afbcff2" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20d28af2-5699-4854-8353-e9c70f9cbe19?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "7cd927b9-a9ff-47d2-9bed-51af73e301c3" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121704Z:7cd927b9-a9ff-47d2-9bed-51af73e301c3" ], + "x-ms-correlation-request-id": [ "6e8b8673-b9a5-4cd1-b768-801840682a86" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001859Z:6e8b8673-b9a5-4cd1-b768-801840682a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:18:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "755" ], + "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"mappingRuleName\":\"EventsMapping\",\"tableName\":\"Events\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0eedbf9c-6d85-4fc8-908b-4a183d5e1dfb?api-version=2020-02-15+5": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/20d28af2-5699-4854-8353-e9c70f9cbe19?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0eedbf9c-6d85-4fc8-908b-4a183d5e1dfb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/20d28af2-5699-4854-8353-e9c70f9cbe19?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "314", "315" ], - "x-ms-client-request-id": [ "e1c3bea5-4624-4717-85b9-af13d16be584", "e1c3bea5-4624-4717-85b9-af13d16be584" ], + "x-ms-unique-id": [ "339", "340" ], + "x-ms-client-request-id": [ "2b848caf-55df-478b-b3f1-456153455875", "2b848caf-55df-478b-b3f1-456153455875" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -181,31 +181,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "542ab013-08d3-467d-8d7f-73b575ed80d8" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "78338d28-047f-481f-bde8-00b3a8490ab4" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "944a7374-48b4-4ef3-b900-2d2dc2438d76" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121734Z:944a7374-48b4-4ef3-b900-2d2dc2438d76" ], + "x-ms-correlation-request-id": [ "1075383a-02d5-4ef2-9c0d-02a81ece7700" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001932Z:1075383a-02d5-4ef2-9c0d-02a81ece7700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "480" ], + "Content-Length": [ "346" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0eedbf9c-6d85-4fc8-908b-4a183d5e1dfb\",\"name\":\"0eedbf9c-6d85-4fc8-908b-4a183d5e1dfb\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:17:04.2524598Z\",\"endTime\":\"2020-05-07T12:17:08.752149Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"d5da5063-0e59-4ae8-9b52-1f9177dbc8eb\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/20d28af2-5699-4854-8353-e9c70f9cbe19\",\"name\":\"20d28af2-5699-4854-8353-e9c70f9cbe19\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:18:59.1886258Z\",\"endTime\":\"2020-08-03T00:19:28.300977Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+6": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "314", "315", "316" ], - "x-ms-client-request-id": [ "e1c3bea5-4624-4717-85b9-af13d16be584", "e1c3bea5-4624-4717-85b9-af13d16be584", "e1c3bea5-4624-4717-85b9-af13d16be584" ], + "x-ms-unique-id": [ "339", "340", "341" ], + "x-ms-client-request-id": [ "2b848caf-55df-478b-b3f1-456153455875", "2b848caf-55df-478b-b3f1-456153455875", "2b848caf-55df-478b-b3f1-456153455875" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,31 +223,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "4b2b7134-c2ec-4dc5-906a-338a54ec33bf" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "5d8be2c3-1bc8-48d4-b23b-e936f7b0ca9f" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6efa5e13-9afb-4120-9571-43d565eb91a8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121734Z:6efa5e13-9afb-4120-9571-43d565eb91a8" ], + "x-ms-correlation-request-id": [ "6f25160c-b875-4b6c-98c6-2aba41537801" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001939Z:6f25160c-b875-4b6c-98c6-2aba41537801" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:19:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "793" ], + "Content-Length": [ "770" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":\"\",\"mappingRuleName\":\"\",\"dataFormat\":\"\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15+1": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "3da49bbb-c8ec-4de7-8fc0-038af2f2d906" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "0eab4733-3d54-491c-a8ae-0f35292f15aa" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -262,17 +262,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/174aa339-af39-47aa-9b72-49040264e53c?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/174aa339-af39-47aa-9b72-49040264e53c?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7e590f1c-b01c-4637-b476-638d5446a0b3?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7e590f1c-b01c-4637-b476-638d5446a0b3?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], - "x-ms-request-id": [ "188321ec-51c5-4f80-9e63-e630590ef14f" ], - "x-ms-correlation-request-id": [ "188321ec-51c5-4f80-9e63-e630590ef14f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121735Z:188321ec-51c5-4f80-9e63-e630590ef14f" ], + "x-ms-request-id": [ "6f6a0174-7897-4477-8390-868064efd84d" ], + "x-ms-correlation-request-id": [ "6f6a0174-7897-4477-8390-868064efd84d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001948Z:6f6a0174-7897-4477-8390-868064efd84d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:17:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:19:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -281,14 +281,14 @@ "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/174aa339-af39-47aa-9b72-49040264e53c?api-version=2020-02-15+2": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7e590f1c-b01c-4637-b476-638d5446a0b3?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/174aa339-af39-47aa-9b72-49040264e53c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7e590f1c-b01c-4637-b476-638d5446a0b3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "317", "318" ], - "x-ms-client-request-id": [ "3da49bbb-c8ec-4de7-8fc0-038af2f2d906", "3da49bbb-c8ec-4de7-8fc0-038af2f2d906" ], + "x-ms-unique-id": [ "342", "343" ], + "x-ms-client-request-id": [ "0eab4733-3d54-491c-a8ae-0f35292f15aa", "0eab4733-3d54-491c-a8ae-0f35292f15aa" ], "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -304,32 +304,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "51e20189-a4d1-4846-8171-87b4ce17da2d" ], - "x-ms-request-id": [ "da66ed13-0ebf-4027-a270-a0773bbdf971" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "e8b7820c-9594-4398-9107-d7a390f163ec" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121805Z:51e20189-a4d1-4846-8171-87b4ce17da2d" ], + "x-ms-correlation-request-id": [ "d95d7a49-994c-4a5e-96b8-8cb067a75514" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002018Z:d95d7a49-994c-4a5e-96b8-8cb067a75514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:18:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:20:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/174aa339-af39-47aa-9b72-49040264e53c\",\"name\":\"174aa339-af39-47aa-9b72-49040264e53c\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:17:35.3068226Z\",\"endTime\":\"2020-05-07T12:17:35.4318242Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"248c0615-5533-463d-bee7-7eae00ae1628\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7e590f1c-b01c-4637-b476-638d5446a0b3\",\"name\":\"7e590f1c-b01c-4637-b476-638d5446a0b3\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:19:47.9426677Z\",\"endTime\":\"2020-08-03T00:19:49.1615199Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"1adc1e61-e51c-490d-8293-6ded44dc432b\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/174aa339-af39-47aa-9b72-49040264e53c?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7e590f1c-b01c-4637-b476-638d5446a0b3?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/174aa339-af39-47aa-9b72-49040264e53c?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7e590f1c-b01c-4637-b476-638d5446a0b3?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "317", "318", "319" ], - "x-ms-client-request-id": [ "3da49bbb-c8ec-4de7-8fc0-038af2f2d906", "3da49bbb-c8ec-4de7-8fc0-038af2f2d906", "3da49bbb-c8ec-4de7-8fc0-038af2f2d906" ], + "x-ms-unique-id": [ "342", "343", "344" ], + "x-ms-client-request-id": [ "0eab4733-3d54-491c-a8ae-0f35292f15aa", "0eab4733-3d54-491c-a8ae-0f35292f15aa", "0eab4733-3d54-491c-a8ae-0f35292f15aa" ], "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -344,15 +344,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b278ee54-2cc9-4106-aeef-2d1a2bd930bf" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "d04b1f6e-e5ce-441c-90f9-9a8854a03e20" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "x-ms-correlation-request-id": [ "20f87594-5637-4874-8ab8-e10c743e1752" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121806Z:20f87594-5637-4874-8ab8-e10c743e1752" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-correlation-request-id": [ "b230d80e-56ca-4106-a1e8-6c133fbd745d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002018Z:b230d80e-56ca-4106-a1e8-6c133fbd745d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:18:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:20:18 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -361,16 +361,16 @@ "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15+4": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "584" ] + "Content-Length": [ "488" ] } }, "Response": { @@ -379,33 +379,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "7dbbd29a-ef03-4b1a-8e0b-c5fa3ba48a24" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/57ad40ea-fc55-4d46-af96-3fad129d5108?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "ef67a7ce-0981-4b44-b026-e2ac02e72a8d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e530971c-3e4d-42d7-8d0c-fc72d0876450?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "caa872ff-45bf-490d-9da3-32ec921f472c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121807Z:caa872ff-45bf-490d-9da3-32ec921f472c" ], + "x-ms-correlation-request-id": [ "28e6e744-fa35-4081-8e7a-bc0371662da8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002019Z:28e6e744-fa35-4081-8e7a-bc0371662da8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:18:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:20:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "912" ], + "Content-Length": [ "837" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"properties\":{\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\"mappingRuleName\":\"EventsMapping\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\"tableName\":\"Events\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"properties\":{\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/57ad40ea-fc55-4d46-af96-3fad129d5108?api-version=2020-02-15+5": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e530971c-3e4d-42d7-8d0c-fc72d0876450?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/57ad40ea-fc55-4d46-af96-3fad129d5108?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e530971c-3e4d-42d7-8d0c-fc72d0876450?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "320", "321" ], - "x-ms-client-request-id": [ "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be" ], + "x-ms-unique-id": [ "345", "346" ], + "x-ms-client-request-id": [ "69f2029b-0d7f-4f00-85e2-f5937a858118", "69f2029b-0d7f-4f00-85e2-f5937a858118" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -421,32 +421,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], - "x-ms-request-id": [ "1185a27d-a722-47be-85aa-f2b54a3ab6c7" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "4f312c68-2ac3-4465-afbf-59812157e3a6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a406be23-93b5-49c6-ab81-e12c03b78156" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121837Z:a406be23-93b5-49c6-ab81-e12c03b78156" ], + "x-ms-correlation-request-id": [ "94510a5f-081f-402b-99f2-837abce196bf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002050Z:94510a5f-081f-402b-99f2-837abce196bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:18:36 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:20:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "485" ], + "Content-Length": [ "345" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/57ad40ea-fc55-4d46-af96-3fad129d5108\",\"name\":\"57ad40ea-fc55-4d46-af96-3fad129d5108\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:18:06.8879125Z\",\"endTime\":\"2020-05-07T12:18:06.8879125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"50cecbb7-24a7-4cd7-929b-82ed7f4cfb5a\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e530971c-3e4d-42d7-8d0c-fc72d0876450\",\"name\":\"e530971c-3e4d-42d7-8d0c-fc72d0876450\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:20:19.7815487Z\",\"endTime\":\"2020-08-03T00:20:19.7815487Z\",\"percentComplete\":0.5,\"properties\":{}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/57ad40ea-fc55-4d46-af96-3fad129d5108?api-version=2020-02-15+6": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e530971c-3e4d-42d7-8d0c-fc72d0876450?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/57ad40ea-fc55-4d46-af96-3fad129d5108?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e530971c-3e4d-42d7-8d0c-fc72d0876450?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "320", "321", "322" ], - "x-ms-client-request-id": [ "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be" ], + "x-ms-unique-id": [ "345", "346", "347" ], + "x-ms-client-request-id": [ "69f2029b-0d7f-4f00-85e2-f5937a858118", "69f2029b-0d7f-4f00-85e2-f5937a858118", "69f2029b-0d7f-4f00-85e2-f5937a858118" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -462,32 +462,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "3b8a81cb-0ab8-4dc8-984e-bd5582e4281d" ], - "x-ms-request-id": [ "d0170cc8-ad3c-4523-8d97-1c1565175aaa" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "275" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "89051d4c-df41-46f2-b2a9-e5d1ae9a822f" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121907Z:3b8a81cb-0ab8-4dc8-984e-bd5582e4281d" ], + "x-ms-correlation-request-id": [ "6ab27e22-11c4-4506-8b3c-d469f61ee3e2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002120Z:6ab27e22-11c4-4506-8b3c-d469f61ee3e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:19:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:21:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "485" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/57ad40ea-fc55-4d46-af96-3fad129d5108\",\"name\":\"57ad40ea-fc55-4d46-af96-3fad129d5108\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:18:06.8879125Z\",\"endTime\":\"2020-05-07T12:18:06.8879125Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"50cecbb7-24a7-4cd7-929b-82ed7f4cfb5a\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e530971c-3e4d-42d7-8d0c-fc72d0876450\",\"name\":\"e530971c-3e4d-42d7-8d0c-fc72d0876450\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:20:19.7815487Z\",\"endTime\":\"2020-08-03T00:20:59.1352063Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/57ad40ea-fc55-4d46-af96-3fad129d5108?api-version=2020-02-15+7": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/57ad40ea-fc55-4d46-af96-3fad129d5108?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "320", "321", "322", "323" ], - "x-ms-client-request-id": [ "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be" ], + "x-ms-unique-id": [ "345", "346", "347", "348" ], + "x-ms-client-request-id": [ "69f2029b-0d7f-4f00-85e2-f5937a858118", "69f2029b-0d7f-4f00-85e2-f5937a858118", "69f2029b-0d7f-4f00-85e2-f5937a858118", "69f2029b-0d7f-4f00-85e2-f5937a858118" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -497,47 +497,6 @@ "ContentHeaders": { } }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "274" ], - "x-ms-request-id": [ "4df68273-d3b1-4039-a554-9fb242dd39bd" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bcf88656-7b2d-49a5-9be8-5e5bbf09aaf7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121940Z:bcf88656-7b2d-49a5-9be8-5e5bbf09aaf7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:19:40 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "489" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/57ad40ea-fc55-4d46-af96-3fad129d5108\",\"name\":\"57ad40ea-fc55-4d46-af96-3fad129d5108\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:18:06.8879125Z\",\"endTime\":\"2020-05-07T12:19:23.4066652Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"50cecbb7-24a7-4cd7-929b-82ed7f4cfb5a\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "320", "321", "322", "323", "324" ], - "x-ms-client-request-id": [ "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be", "c3a43a4b-ef75-4a72-9f27-d5d3b06d35be" ], - "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], - "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, "Response": { "StatusCode": 200, "Headers": { @@ -546,31 +505,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "368c056e-30ce-4dac-9c15-859971e6e0fc" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "c22f7db4-00e8-48e5-9d88-268409216356" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8a959f15-b97d-4707-a4d8-7e4b5bf6865e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121940Z:8a959f15-b97d-4707-a4d8-7e4b5bf6865e" ], + "x-ms-correlation-request-id": [ "297aaaa7-6fc9-4723-ac48-f7695fd5793f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002120Z:297aaaa7-6fc9-4723-ac48-f7695fd5793f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:19:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:21:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15+1": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "325" ], - "x-ms-client-request-id": [ "3797d005-5013-4e2e-a121-123cc3a8d582" ], + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "9ea5d9ee-3150-4118-a366-34dd670d517f" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -585,17 +544,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/24511834-dc09-4512-a300-e4af3caa61bd?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/24511834-dc09-4512-a300-e4af3caa61bd?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14989" ], - "x-ms-request-id": [ "7895e07b-f4d5-47e3-8e92-81d0a4ec0e6e" ], - "x-ms-correlation-request-id": [ "7895e07b-f4d5-47e3-8e92-81d0a4ec0e6e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121940Z:7895e07b-f4d5-47e3-8e92-81d0a4ec0e6e" ], + "x-ms-request-id": [ "9a7c95bc-efe6-4b2e-a4b6-9f8397838d64" ], + "x-ms-correlation-request-id": [ "9a7c95bc-efe6-4b2e-a4b6-9f8397838d64" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002121Z:9a7c95bc-efe6-4b2e-a4b6-9f8397838d64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:19:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:21:21 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -604,14 +563,14 @@ "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/24511834-dc09-4512-a300-e4af3caa61bd?api-version=2020-02-15+2": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/24511834-dc09-4512-a300-e4af3caa61bd?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "325", "326" ], - "x-ms-client-request-id": [ "3797d005-5013-4e2e-a121-123cc3a8d582", "3797d005-5013-4e2e-a121-123cc3a8d582" ], + "x-ms-unique-id": [ "349", "350" ], + "x-ms-client-request-id": [ "9ea5d9ee-3150-4118-a366-34dd670d517f", "9ea5d9ee-3150-4118-a366-34dd670d517f" ], "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -627,32 +586,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "c610cada-5cd4-432a-9878-02ac62a4b583" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "cd39e021-58a9-49cb-bb67-981b60b2073f" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fb4988e8-055e-45b0-ad34-dcd8170aaf38" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122011Z:fb4988e8-055e-45b0-ad34-dcd8170aaf38" ], + "x-ms-correlation-request-id": [ "c663d643-af52-4b63-adf5-f51720576d77" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002151Z:c663d643-af52-4b63-adf5-f51720576d77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:21:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/24511834-dc09-4512-a300-e4af3caa61bd\",\"name\":\"24511834-dc09-4512-a300-e4af3caa61bd\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:19:40.8286581Z\",\"endTime\":\"2020-05-07T12:19:40.9693036Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"34e4d801-38d6-4620-8fa0-231aa4d26446\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/52158415-4c7c-4b55-bc17-276c784c6f9b\",\"name\":\"52158415-4c7c-4b55-bc17-276c784c6f9b\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:21:21.6313703Z\",\"endTime\":\"2020-08-03T00:21:21.7407488Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"ce6e9b89-ce9b-4a52-aa9f-d3ae32dfacea\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/24511834-dc09-4512-a300-e4af3caa61bd?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/24511834-dc09-4512-a300-e4af3caa61bd?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/52158415-4c7c-4b55-bc17-276c784c6f9b?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "325", "326", "327" ], - "x-ms-client-request-id": [ "3797d005-5013-4e2e-a121-123cc3a8d582", "3797d005-5013-4e2e-a121-123cc3a8d582", "3797d005-5013-4e2e-a121-123cc3a8d582" ], + "x-ms-unique-id": [ "349", "350", "351" ], + "x-ms-client-request-id": [ "9ea5d9ee-3150-4118-a366-34dd670d517f", "9ea5d9ee-3150-4118-a366-34dd670d517f", "9ea5d9ee-3150-4118-a366-34dd670d517f" ], "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -667,15 +626,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9c1466a7-aeb7-4dc1-bd5b-1bf15b7810ba" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "90563b97-0935-4753-bf31-4ac2d27ddfc6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "68c9287f-dcbb-4364-bf35-386e6c49108f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122011Z:68c9287f-dcbb-4364-bf35-386e6c49108f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-correlation-request-id": [ "3cd645ae-0b56-40d2-86ab-72b268709c77" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002152Z:3cd645ae-0b56-40d2-86ab-72b268709c77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:21:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -684,16 +643,16 @@ "Content": null } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15+4": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\r\n \"sharedAccessPolicyName\": \"registryRead\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "411" ] + "Content-Length": [ "315" ] } }, "Response": { @@ -702,33 +661,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "a60b2c5e-80d1-4969-bd9d-4957235a1633" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d8ab610-3e4e-41ff-90c7-d2f0b2e50ef1?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "5ee3306e-d823-4251-a174-d759d30f4735" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/da3a3259-50e8-4052-8411-ba44a43cfa78?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "197" ], - "x-ms-correlation-request-id": [ "403c1d78-c3c6-4b0a-b497-fce0a7ef8226" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122012Z:403c1d78-c3c6-4b0a-b497-fce0a7ef8226" ], + "x-ms-correlation-request-id": [ "80026887-e161-466d-b568-7fd6c9de2cf3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002153Z:80026887-e161-466d-b568-7fd6c9de2cf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:21:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "739" ], + "Content-Length": [ "664" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"properties\":{\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\"mappingRuleName\":\"EventsMapping\",\"sharedAccessPolicyName\":\"registryRead\",\"tableName\":\"Events\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"properties\":{\"consumerGroup\":\"$Default\",\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d8ab610-3e4e-41ff-90c7-d2f0b2e50ef1?api-version=2020-02-15+5": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/da3a3259-50e8-4052-8411-ba44a43cfa78?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d8ab610-3e4e-41ff-90c7-d2f0b2e50ef1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/da3a3259-50e8-4052-8411-ba44a43cfa78?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "328", "329" ], - "x-ms-client-request-id": [ "27e6c79d-1f08-4a14-aafb-ea5c8c2fbc68", "27e6c79d-1f08-4a14-aafb-ea5c8c2fbc68" ], + "x-ms-unique-id": [ "352", "353" ], + "x-ms-client-request-id": [ "a68574e1-fc5d-43ea-aa8d-f8f691ca7a58", "a68574e1-fc5d-43ea-aa8d-f8f691ca7a58" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -744,32 +703,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "92e8bf29-9cdd-4cc9-b737-ac420a6439e6" ], - "x-ms-request-id": [ "56dd14f9-72af-419f-b66d-0df1800f021e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "5fc452f8-c64f-4b3d-a005-e824e51ad7f6" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122042Z:92e8bf29-9cdd-4cc9-b737-ac420a6439e6" ], + "x-ms-correlation-request-id": [ "fb08d2ec-4f3b-4532-a5d0-8e6afe2f3bc7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002223Z:fb08d2ec-4f3b-4532-a5d0-8e6afe2f3bc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "479" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d8ab610-3e4e-41ff-90c7-d2f0b2e50ef1\",\"name\":\"2d8ab610-3e4e-41ff-90c7-d2f0b2e50ef1\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:20:11.9414382Z\",\"endTime\":\"2020-05-07T12:20:13.43282Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"bac34522-a0ef-4ef1-821a-d3ecf5d0e22b\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/da3a3259-50e8-4052-8411-ba44a43cfa78\",\"name\":\"da3a3259-50e8-4052-8411-ba44a43cfa78\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:21:53.2510658Z\",\"endTime\":\"2020-08-03T00:21:54.3761568Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15+6": { + "New-AzKustoDataConnection+[NoContext]+CreateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "328", "329", "330" ], - "x-ms-client-request-id": [ "27e6c79d-1f08-4a14-aafb-ea5c8c2fbc68", "27e6c79d-1f08-4a14-aafb-ea5c8c2fbc68", "27e6c79d-1f08-4a14-aafb-ea5c8c2fbc68" ], + "x-ms-unique-id": [ "352", "353", "354" ], + "x-ms-client-request-id": [ "a68574e1-fc5d-43ea-aa8d-f8f691ca7a58", "a68574e1-fc5d-43ea-aa8d-f8f691ca7a58", "a68574e1-fc5d-43ea-aa8d-f8f691ca7a58" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -787,21 +746,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "29fdd768-92d3-47cf-9799-70a973aabb92" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "63a954de-eaa0-4e11-93f3-ae5f06c8d0dd" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "1e8ddcea-5f1a-4c0e-bdd2-b5744451f173" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122043Z:1e8ddcea-5f1a-4c0e-bdd2-b5744451f173" ], + "x-ms-correlation-request-id": [ "3a1d5f78-9998-436e-9895-01d78e2f1cf5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002224Z:3a1d5f78-9998-436e-9895-01d78e2f1cf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "777" ], + "Content-Length": [ "754" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":\"\",\"mappingRuleName\":\"\",\"dataFormat\":\"\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/New-AzKustoDataConnection.Tests.ps1 b/src/Kusto/test/New-AzKustoDataConnection.Tests.ps1 index f6ccc1923025..8e7a1b4a4f02 100644 --- a/src/Kusto/test/New-AzKustoDataConnection.Tests.ps1 +++ b/src/Kusto/test/New-AzKustoDataConnection.Tests.ps1 @@ -24,15 +24,12 @@ Describe 'New-AzKustoDataConnection' { $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" { Remove-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName } | Should -Not -Throw - $dataConnectionCreated = New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $tableName -MappingRuleName $tableMappingName - Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $tableName $tableMappingName $dataFormat $kind + $dataConnectionCreated = New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" + Validate_EventHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $kind } It 'CreateExpandedEventGrid' { @@ -47,15 +44,12 @@ Describe 'New-AzKustoDataConnection' { $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" $storageAccountName = $env.storageName $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageAccountName" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventGrid" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" { Remove-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName } | Should -Not -Throw - $dataConnectionCreated = New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - Validate_EventGridDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $storageAccountResourceId $tableName $tableMappingName $dataFormat $kind + $dataConnectionCreated = New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' + Validate_EventGridDataConnection $dataConnectionCreated $dataConnectionFullName $location $eventHubResourceId $storageAccountResourceId $kind } It 'CreateExpandedIotHub' { @@ -68,14 +62,11 @@ Describe 'New-AzKustoDataConnection' { $iothubName = $env.iothubName $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" $sharedAccessPolicyName = $env.iothubSharedAccessPolicyName - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "IotHub" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" { Remove-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName } | Should -Not -Throw - $dataConnectionCreated = New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - Validate_IotHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $iotHubResourceId $sharedAccessPolicyName $tableName $tableMappingName $dataFormat $kind + $dataConnectionCreated = New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' + Validate_IotHubDataConnection $dataConnectionCreated $dataConnectionFullName $location $iotHubResourceId $sharedAccessPolicyName $kind } } diff --git a/src/Kusto/test/New-AzKustoDatabase.Recording.json b/src/Kusto/test/New-AzKustoDatabase.Recording.json index 62df0e6f290d..91de4ed0ea94 100644 --- a/src/Kusto/test/New-AzKustoDatabase.Recording.json +++ b/src/Kusto/test/New-AzKustoDatabase.Recording.json @@ -1,8 +1,8 @@ { - "New-AzKustoDatabase+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+1": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\"\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "b9d13cae-ea40-4f95-8030-3e7ac333643d" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1216773e-2aa1-4819-86f6-181cb5e031a7?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "f6defa48-fe53-4fa6-9a4e-e280f7faf20d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/02f3b2c5-607d-4be9-a573-e1676fc0c0bf?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], - "x-ms-correlation-request-id": [ "23064e84-2eff-4c1b-b55d-a2281a4e5c4d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121325Z:23064e84-2eff-4c1b-b55d-a2281a4e5c4d" ], + "x-ms-correlation-request-id": [ "3a6b8f9f-d4cf-492c-a2c9-996c6fdcca8c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001400Z:3a6b8f9f-d4cf-492c-a2c9-996c6fdcca8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:13:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf\",\"name\":\"testclusterpb8oay/testdatabasei6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho\",\"name\":\"testclusterlbfexs/testdatabasesu8yho\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1216773e-2aa1-4819-86f6-181cb5e031a7?api-version=2020-02-15+2": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/02f3b2c5-607d-4be9-a573-e1676fc0c0bf?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/1216773e-2aa1-4819-86f6-181cb5e031a7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/02f3b2c5-607d-4be9-a573-e1676fc0c0bf?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "293", "294" ], - "x-ms-client-request-id": [ "3b37cb7f-230e-4e61-8043-d02d042733d6", "3b37cb7f-230e-4e61-8043-d02d042733d6" ], + "x-ms-unique-id": [ "318", "319" ], + "x-ms-client-request-id": [ "89449b19-c2dc-4b24-942f-41ba6a99eb71", "89449b19-c2dc-4b24-942f-41ba6a99eb71" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a139a2c3-1d58-4658-bc2c-8dcc06716c11" ], - "x-ms-request-id": [ "5b0649b3-493a-49d4-bf41-91fcfec7a0c5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "ce5ab270-24e2-40af-8dc9-4a3b328b656c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121355Z:a139a2c3-1d58-4658-bc2c-8dcc06716c11" ], + "x-ms-correlation-request-id": [ "f9f56ac5-6a6b-4da4-a27d-3f9b12d1d311" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001435Z:f9f56ac5-6a6b-4da4-a27d-3f9b12d1d311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:14:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/1216773e-2aa1-4819-86f6-181cb5e031a7\",\"name\":\"1216773e-2aa1-4819-86f6-181cb5e031a7\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:13:25.3701531Z\",\"endTime\":\"2020-05-07T12:13:27.3078901Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"617b80ab-552b-4adb-8935-dc07e6a67cb6\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/02f3b2c5-607d-4be9-a573-e1676fc0c0bf\",\"name\":\"02f3b2c5-607d-4be9-a573-e1676fc0c0bf\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:14:00.4450235Z\",\"endTime\":\"2020-08-03T00:14:02.7108404Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"5a0ed027-658a-4bc4-9089-5dd4f270bc5e\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+3": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "293", "294", "295" ], - "x-ms-client-request-id": [ "3b37cb7f-230e-4e61-8043-d02d042733d6", "3b37cb7f-230e-4e61-8043-d02d042733d6", "3b37cb7f-230e-4e61-8043-d02d042733d6" ], + "x-ms-unique-id": [ "318", "319", "320" ], + "x-ms-client-request-id": [ "89449b19-c2dc-4b24-942f-41ba6a99eb71", "89449b19-c2dc-4b24-942f-41ba6a99eb71", "89449b19-c2dc-4b24-942f-41ba6a99eb71" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -102,31 +102,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "3c2071cc-26a6-4c55-afb8-c29998b3dc8a" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "ca2a195d-382c-4aca-9f70-c307a676d4b8" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5135ae28-b6d9-4fdd-bbbf-64c5f351e923" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121356Z:5135ae28-b6d9-4fdd-bbbf-64c5f351e923" ], + "x-ms-correlation-request-id": [ "c55d6d84-5398-48f4-8916-eb2148c88944" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001436Z:c55d6d84-5398-48f4-8916-eb2148c88944" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:56 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:14:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "471" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf\",\"name\":\"testclusterpb8oay/testdatabasei6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho\",\"name\":\"testclusterlbfexs/testdatabasesu8yho\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoDatabase+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+4": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "296" ], - "x-ms-client-request-id": [ "be5c817e-2782-49b9-98b3-8c8639502127" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "7851eabc-56dc-4dc0-9d62-e30aa1bdd7a2" ], "CommandName": [ "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,17 +141,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/890f782f-ac2d-4ecb-9419-c90ef7614288?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/890f782f-ac2d-4ecb-9419-c90ef7614288?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], - "x-ms-request-id": [ "80706568-65b0-4b5c-b5c5-2f9e6a444dc4" ], - "x-ms-correlation-request-id": [ "80706568-65b0-4b5c-b5c5-2f9e6a444dc4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121356Z:80706568-65b0-4b5c-b5c5-2f9e6a444dc4" ], + "x-ms-request-id": [ "52920e81-f3dc-4ea7-bec9-4edc5cc5ed42" ], + "x-ms-correlation-request-id": [ "52920e81-f3dc-4ea7-bec9-4edc5cc5ed42" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001440Z:52920e81-f3dc-4ea7-bec9-4edc5cc5ed42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:13:56 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:14:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -160,14 +160,14 @@ "Content": null } }, - "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/890f782f-ac2d-4ecb-9419-c90ef7614288?api-version=2020-02-15+5": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/890f782f-ac2d-4ecb-9419-c90ef7614288?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "296", "297" ], - "x-ms-client-request-id": [ "be5c817e-2782-49b9-98b3-8c8639502127", "be5c817e-2782-49b9-98b3-8c8639502127" ], + "x-ms-unique-id": [ "321", "322" ], + "x-ms-client-request-id": [ "7851eabc-56dc-4dc0-9d62-e30aa1bdd7a2", "7851eabc-56dc-4dc0-9d62-e30aa1bdd7a2" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -183,32 +183,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "c6d27bcb-ef00-4fde-9591-1ba6fa400056" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "0c7f29b6-d114-4c22-b921-fd3764027942" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a3917698-6a61-4723-ac81-06cfb5f492ba" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121426Z:a3917698-6a61-4723-ac81-06cfb5f492ba" ], + "x-ms-correlation-request-id": [ "1d021149-bc1b-43ee-af1b-db73a245fb85" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001515Z:1d021149-bc1b-43ee-af1b-db73a245fb85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:26 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:15:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "466" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/890f782f-ac2d-4ecb-9419-c90ef7614288\",\"name\":\"890f782f-ac2d-4ecb-9419-c90ef7614288\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:13:56.6915073Z\",\"endTime\":\"2020-05-07T12:13:58.785384Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"b88a635e-31eb-41fc-b1a7-e84b6d8d66fc\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83\",\"name\":\"b6c004b0-aa7c-46bd-bfb6-a19184dc8d83\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:14:40.7608803Z\",\"endTime\":\"2020-08-03T00:14:47.6208264Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"5d5ddf83-abc9-45a0-8082-4c6d4223836e\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/890f782f-ac2d-4ecb-9419-c90ef7614288?api-version=2020-02-15\u0026operationResultResponseType=Location+6": { + "New-AzKustoDatabase+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83?api-version=2020-06-14\u0026operationResultResponseType=Location+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/890f782f-ac2d-4ecb-9419-c90ef7614288?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b6c004b0-aa7c-46bd-bfb6-a19184dc8d83?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "296", "297", "298" ], - "x-ms-client-request-id": [ "be5c817e-2782-49b9-98b3-8c8639502127", "be5c817e-2782-49b9-98b3-8c8639502127", "be5c817e-2782-49b9-98b3-8c8639502127" ], + "x-ms-unique-id": [ "321", "322", "323" ], + "x-ms-client-request-id": [ "7851eabc-56dc-4dc0-9d62-e30aa1bdd7a2", "7851eabc-56dc-4dc0-9d62-e30aa1bdd7a2", "7851eabc-56dc-4dc0-9d62-e30aa1bdd7a2" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,15 +223,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0ec74e2e-68ba-4f23-89ca-0d42c071b223" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "5d444af8-f4f8-4944-bd47-a660bcd3a6cf" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-correlation-request-id": [ "4bccfba3-0c3c-4542-93dd-60d64a01c921" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121427Z:4bccfba3-0c3c-4542-93dd-60d64a01c921" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-correlation-request-id": [ "cbe2a541-b3a4-449d-a4f1-23b27de441fb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001516Z:cbe2a541-b3a4-449d-a4f1-23b27de441fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:26 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:15:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -240,10 +240,10 @@ "Content": null } }, - "New-AzKustoDatabase+[NoContext]+Create+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+1": { + "New-AzKustoDatabase+[NoContext]+Create+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P2D\"\r\n }\r\n}", "Headers": { }, @@ -258,33 +258,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "72d30869-cca0-485d-92dc-8d963777dd71" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/be6182e7-a7c5-4b71-82e2-5b9e58f37104?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "f071868f-227d-4a28-a452-0e5b70f8cce0" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d8e793a2-7410-4216-a60c-5720fde89135?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "195" ], - "x-ms-correlation-request-id": [ "9c916e28-307c-47de-a6f0-c04b9296d604" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121427Z:9c916e28-307c-47de-a6f0-c04b9296d604" ], + "x-ms-correlation-request-id": [ "5e1bc787-287a-4986-bb75-5630f9896391" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001518Z:5e1bc787-287a-4986-bb75-5630f9896391" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:15:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "386" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7\",\"name\":\"testclusterpb8oay/testdatabaseaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"hotCachePeriod\":\"P2D\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8\",\"name\":\"testclusterlbfexs/testdatabaser4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"hotCachePeriod\":\"P2D\",\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/be6182e7-a7c5-4b71-82e2-5b9e58f37104?api-version=2020-02-15+2": { + "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d8e793a2-7410-4216-a60c-5720fde89135?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/be6182e7-a7c5-4b71-82e2-5b9e58f37104?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d8e793a2-7410-4216-a60c-5720fde89135?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "299", "300" ], - "x-ms-client-request-id": [ "d7f0ab86-c275-4e86-983f-1c407f0752b4", "d7f0ab86-c275-4e86-983f-1c407f0752b4" ], + "x-ms-unique-id": [ "324", "325" ], + "x-ms-client-request-id": [ "a8e9571f-db3f-4b5c-ae28-5e32fc877f6a", "a8e9571f-db3f-4b5c-ae28-5e32fc877f6a" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -300,32 +300,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "9e743141-6748-408d-b2e6-3cc2ec8b1718" ], - "x-ms-request-id": [ "01c09698-4c28-4d11-aa8f-2ce2a5240f61" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "413877cd-caa6-4d46-b7eb-36c6870c1156" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121457Z:9e743141-6748-408d-b2e6-3cc2ec8b1718" ], + "x-ms-correlation-request-id": [ "1a5983f0-4024-43c9-8651-a87869f8c25f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001553Z:1a5983f0-4024-43c9-8651-a87869f8c25f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:15:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/be6182e7-a7c5-4b71-82e2-5b9e58f37104\",\"name\":\"be6182e7-a7c5-4b71-82e2-5b9e58f37104\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:14:27.6072616Z\",\"endTime\":\"2020-05-07T12:14:29.3573459Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"ca32051d-e8de-41bd-a3bb-f8e7d59df752\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d8e793a2-7410-4216-a60c-5720fde89135\",\"name\":\"d8e793a2-7410-4216-a60c-5720fde89135\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:15:18.3265003Z\",\"endTime\":\"2020-08-03T00:15:20.4829274Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"682813f3-73b8-4148-925a-75e011ac998b\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+3": { + "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "299", "300", "301" ], - "x-ms-client-request-id": [ "d7f0ab86-c275-4e86-983f-1c407f0752b4", "d7f0ab86-c275-4e86-983f-1c407f0752b4", "d7f0ab86-c275-4e86-983f-1c407f0752b4" ], + "x-ms-unique-id": [ "324", "325", "326" ], + "x-ms-client-request-id": [ "a8e9571f-db3f-4b5c-ae28-5e32fc877f6a", "a8e9571f-db3f-4b5c-ae28-5e32fc877f6a", "a8e9571f-db3f-4b5c-ae28-5e32fc877f6a" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -343,31 +343,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "67427cb4-6b58-471f-af08-62d1a110373f" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "bc824816-e2cd-4169-9501-8ff9d16568e1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c9b5dd8c-27cb-422e-86bf-921ed2dcd892" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121458Z:c9b5dd8c-27cb-422e-86bf-921ed2dcd892" ], + "x-ms-correlation-request-id": [ "7eb6389c-9e85-4c01-a552-6564acf2d2d8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001556Z:7eb6389c-9e85-4c01-a552-6564acf2d2d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:15:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7\",\"name\":\"testclusterpb8oay/testdatabaseaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8\",\"name\":\"testclusterlbfexs/testdatabaser4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoDatabase+[NoContext]+Create+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+4": { + "New-AzKustoDatabase+[NoContext]+Create+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "302" ], - "x-ms-client-request-id": [ "c0a1440a-c3fe-4a0a-a793-19edd8a9fc96" ], + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "56bc73f5-0548-45c2-bd9a-5685a3320ec0" ], "CommandName": [ "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -382,17 +382,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/46a5955b-364a-4c53-af6e-b423128ac8bb?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/46a5955b-364a-4c53-af6e-b423128ac8bb?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14993" ], - "x-ms-request-id": [ "2ac2a4da-1d19-4185-bb0f-9196717ce0ef" ], - "x-ms-correlation-request-id": [ "2ac2a4da-1d19-4185-bb0f-9196717ce0ef" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121459Z:2ac2a4da-1d19-4185-bb0f-9196717ce0ef" ], + "x-ms-request-id": [ "1618db07-3995-4c86-b1b1-94bc74336822" ], + "x-ms-correlation-request-id": [ "1618db07-3995-4c86-b1b1-94bc74336822" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001558Z:1618db07-3995-4c86-b1b1-94bc74336822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:14:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:15:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -401,14 +401,14 @@ "Content": null } }, - "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/46a5955b-364a-4c53-af6e-b423128ac8bb?api-version=2020-02-15+5": { + "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/46a5955b-364a-4c53-af6e-b423128ac8bb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "302", "303" ], - "x-ms-client-request-id": [ "c0a1440a-c3fe-4a0a-a793-19edd8a9fc96", "c0a1440a-c3fe-4a0a-a793-19edd8a9fc96" ], + "x-ms-unique-id": [ "327", "328" ], + "x-ms-client-request-id": [ "56bc73f5-0548-45c2-bd9a-5685a3320ec0", "56bc73f5-0548-45c2-bd9a-5685a3320ec0" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -425,31 +425,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "34068935-0edd-419c-82a5-502f14e7947c" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "5d836028-bc5e-4b32-9ee3-016c0fb5cc9a" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0b9ea5e2-70ba-42be-903d-f9deaf0e885c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121529Z:0b9ea5e2-70ba-42be-903d-f9deaf0e885c" ], + "x-ms-correlation-request-id": [ "7f4e054d-9cfe-4653-aba8-8c843717a686" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001633Z:7f4e054d-9cfe-4653-aba8-8c843717a686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:15:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:16:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/46a5955b-364a-4c53-af6e-b423128ac8bb\",\"name\":\"46a5955b-364a-4c53-af6e-b423128ac8bb\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:14:58.9699694Z\",\"endTime\":\"2020-05-07T12:15:01.9075242Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"bf98ded9-7cca-4927-adfd-c61421506356\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae\",\"name\":\"37342ceb-2132-4f1d-b9ca-1deb47b9e8ae\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:15:58.4548334Z\",\"endTime\":\"2020-08-03T00:16:01.095675Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"6eb9317b-97cd-456f-8f02-4f5253c9df57\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/46a5955b-364a-4c53-af6e-b423128ac8bb?api-version=2020-02-15\u0026operationResultResponseType=Location+6": { + "New-AzKustoDatabase+[NoContext]+Create+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae?api-version=2020-06-14\u0026operationResultResponseType=Location+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/46a5955b-364a-4c53-af6e-b423128ac8bb?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/37342ceb-2132-4f1d-b9ca-1deb47b9e8ae?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "302", "303", "304" ], - "x-ms-client-request-id": [ "c0a1440a-c3fe-4a0a-a793-19edd8a9fc96", "c0a1440a-c3fe-4a0a-a793-19edd8a9fc96", "c0a1440a-c3fe-4a0a-a793-19edd8a9fc96" ], + "x-ms-unique-id": [ "327", "328", "329" ], + "x-ms-client-request-id": [ "56bc73f5-0548-45c2-bd9a-5685a3320ec0", "56bc73f5-0548-45c2-bd9a-5685a3320ec0", "56bc73f5-0548-45c2-bd9a-5685a3320ec0" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -464,15 +464,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "901dab00-8006-41a0-9f63-9e8a86a2076a" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "01b59261-f4c9-455e-ba0b-a61c955891c5" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "5aa53642-839b-42db-878a-7a976d17a267" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121529Z:5aa53642-839b-42db-878a-7a976d17a267" ], + "x-ms-correlation-request-id": [ "5097f7d2-a28d-4564-9201-2391eb228ce8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001634Z:5097f7d2-a28d-4564-9201-2391eb228ce8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:15:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:16:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json index 64f6a02b3176..0005f1a90daa 100644 --- a/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json +++ b/src/Kusto/test/New-AzKustoDatabasePrincipalAssignment.Recording.json @@ -1,8 +1,8 @@ { - "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": "{\r\n \"properties\": {\r\n \"principalId\": \"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\r\n \"principalType\": \"App\",\r\n \"role\": \"Viewer\"\r\n }\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "8d7248bc-0332-4bd3-ab87-aaf08e0e636d" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/862d7deb-f362-461d-88f0-3de48786816c?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "fa6a0d7f-9903-4291-838d-4848862bdbdc" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e1518e16-a307-4a69-b3b1-4edba1860479?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "71252b01-c04e-4f36-8a85-a3329df35c5d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121530Z:71252b01-c04e-4f36-8a85-a3329df35c5d" ], + "x-ms-correlation-request-id": [ "30b88dda-e35d-4b06-b5e0-5adfec1c95d8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001645Z:30b88dda-e35d-4b06-b5e0-5adfec1c95d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:15:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:16:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"Viewer\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"Viewer\",\"provisioningState\":\"Creating\"}}" } }, - "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/862d7deb-f362-461d-88f0-3de48786816c?api-version=2020-02-15+2": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e1518e16-a307-4a69-b3b1-4edba1860479?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/862d7deb-f362-461d-88f0-3de48786816c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e1518e16-a307-4a69-b3b1-4edba1860479?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "305", "306" ], - "x-ms-client-request-id": [ "4c370c58-c1bb-42d6-a296-e4d758465737", "4c370c58-c1bb-42d6-a296-e4d758465737" ], + "x-ms-unique-id": [ "330", "331" ], + "x-ms-client-request-id": [ "7a8d5d46-fe04-4e76-ac0a-5ed7d8f352a4", "7a8d5d46-fe04-4e76-ac0a-5ed7d8f352a4" ], "CommandName": [ "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "4a54b9c0-4ae6-45f8-93d1-eba2a200f831" ], - "x-ms-request-id": [ "b353406c-8baf-4a1b-b1d3-dc762e9c8cf0" ], + "x-ms-correlation-request-id": [ "1ff72e1f-b0eb-44d8-8d5d-f0f2209cf908" ], + "x-ms-request-id": [ "e5cc29da-e804-42ba-9156-d1b0522f2bd4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121600Z:4a54b9c0-4ae6-45f8-93d1-eba2a200f831" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001720Z:1ff72e1f-b0eb-44d8-8d5d-f0f2209cf908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:15:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:17:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/862d7deb-f362-461d-88f0-3de48786816c\",\"name\":\"862d7deb-f362-461d-88f0-3de48786816c\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:15:30.1616502Z\",\"endTime\":\"2020-05-07T12:15:30.2554193Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"d563fb5c-edde-4e57-9f85-2b57cc43a96a\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e1518e16-a307-4a69-b3b1-4edba1860479\",\"name\":\"e1518e16-a307-4a69-b3b1-4edba1860479\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:16:45.3806086Z\",\"endTime\":\"2020-08-03T00:16:48.5371156Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"760a8218-05fe-4ca1-b01b-7b3318f66776\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+3": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "305", "306", "307" ], - "x-ms-client-request-id": [ "4c370c58-c1bb-42d6-a296-e4d758465737", "4c370c58-c1bb-42d6-a296-e4d758465737", "4c370c58-c1bb-42d6-a296-e4d758465737" ], + "x-ms-unique-id": [ "330", "331", "332" ], + "x-ms-client-request-id": [ "7a8d5d46-fe04-4e76-ac0a-5ed7d8f352a4", "7a8d5d46-fe04-4e76-ac0a-5ed7d8f352a4", "7a8d5d46-fe04-4e76-ac0a-5ed7d8f352a4" ], "CommandName": [ "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -102,31 +102,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "2a4e5681-c58b-46b8-a13c-4dbe50965d19" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "262a4dd6-556e-4d81-83aa-09019d239cf5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "11cd7629-faf4-43df-be6a-1eaa0af0448c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121601Z:11cd7629-faf4-43df-be6a-1eaa0af0448c" ], + "x-ms-correlation-request-id": [ "eb669370-5dcb-4e80-a98f-31f865edaac5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001725Z:eb669370-5dcb-4e80-a98f-31f865edaac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:17:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "616" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" } }, - "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+4": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "308" ], - "x-ms-client-request-id": [ "bafbba08-f12e-404a-9dc5-087ae72d841c" ], + "x-ms-unique-id": [ "333" ], + "x-ms-client-request-id": [ "9e1dbf52-1a63-4b1c-80fe-a84ad201bdc9" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,17 +141,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce0d744-10ea-4cd7-9207-c56ed2944923?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2ce0d744-10ea-4cd7-9207-c56ed2944923?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3f57e98a-aee0-446c-b46d-ded653750419?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3f57e98a-aee0-446c-b46d-ded653750419?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14992" ], - "x-ms-request-id": [ "dbd824a3-4c10-4c00-a047-101ae23eae0f" ], - "x-ms-correlation-request-id": [ "dbd824a3-4c10-4c00-a047-101ae23eae0f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121601Z:dbd824a3-4c10-4c00-a047-101ae23eae0f" ], + "x-ms-request-id": [ "9cee9e15-b9ae-4265-a1c8-a19f73ff2610" ], + "x-ms-correlation-request-id": [ "9cee9e15-b9ae-4265-a1c8-a19f73ff2610" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001728Z:9cee9e15-b9ae-4265-a1c8-a19f73ff2610" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:17:27 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -160,14 +160,14 @@ "Content": null } }, - "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2ce0d744-10ea-4cd7-9207-c56ed2944923?api-version=2020-02-15+5": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3f57e98a-aee0-446c-b46d-ded653750419?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce0d744-10ea-4cd7-9207-c56ed2944923?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3f57e98a-aee0-446c-b46d-ded653750419?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "308", "309" ], - "x-ms-client-request-id": [ "bafbba08-f12e-404a-9dc5-087ae72d841c", "bafbba08-f12e-404a-9dc5-087ae72d841c" ], + "x-ms-unique-id": [ "333", "334" ], + "x-ms-client-request-id": [ "9e1dbf52-1a63-4b1c-80fe-a84ad201bdc9", "9e1dbf52-1a63-4b1c-80fe-a84ad201bdc9" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -184,31 +184,31 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "a8a98cca-9dbe-42e8-a444-6e657c9861c7" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "39eb1f3d-21df-49ca-ac8f-e7f072225e69" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "2a574867-49a6-4f54-95be-9ff01890860c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121631Z:2a574867-49a6-4f54-95be-9ff01890860c" ], + "x-ms-correlation-request-id": [ "94b0a4a9-f9e1-4723-b10e-d1efe439a5f4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001801Z:94b0a4a9-f9e1-4723-b10e-d1efe439a5f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:18:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2ce0d744-10ea-4cd7-9207-c56ed2944923\",\"name\":\"2ce0d744-10ea-4cd7-9207-c56ed2944923\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:16:01.6042135Z\",\"endTime\":\"2020-05-07T12:16:01.6667194Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"f1eca4f9-3bec-4b1b-8c1d-66331cef70f3\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3f57e98a-aee0-446c-b46d-ded653750419\",\"name\":\"3f57e98a-aee0-446c-b46d-ded653750419\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:17:28.0716782Z\",\"endTime\":\"2020-08-03T00:17:28.4623322Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"585bd1c1-ee9c-4868-bf32-b38cf5f2d262\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2ce0d744-10ea-4cd7-9207-c56ed2944923?api-version=2020-02-15\u0026operationResultResponseType=Location+6": { + "New-AzKustoDatabasePrincipalAssignment+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3f57e98a-aee0-446c-b46d-ded653750419?api-version=2020-06-14\u0026operationResultResponseType=Location+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2ce0d744-10ea-4cd7-9207-c56ed2944923?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3f57e98a-aee0-446c-b46d-ded653750419?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "308", "309", "310" ], - "x-ms-client-request-id": [ "bafbba08-f12e-404a-9dc5-087ae72d841c", "bafbba08-f12e-404a-9dc5-087ae72d841c", "bafbba08-f12e-404a-9dc5-087ae72d841c" ], + "x-ms-unique-id": [ "333", "334", "335" ], + "x-ms-client-request-id": [ "9e1dbf52-1a63-4b1c-80fe-a84ad201bdc9", "9e1dbf52-1a63-4b1c-80fe-a84ad201bdc9", "9e1dbf52-1a63-4b1c-80fe-a84ad201bdc9" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,15 +223,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c09d3659-08f8-4557-9086-166721a82fbd" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "8a12d451-660b-499e-9fea-5dcdc5dd3029" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-correlation-request-id": [ "f8d57af9-9959-489e-ac04-7082d3fd42b1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T121632Z:f8d57af9-9959-489e-ac04-7082d3fd42b1" ], + "x-ms-correlation-request-id": [ "2e747e78-472a-4d22-828a-d983a78af5c8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T001801Z:2e747e78-472a-4d22-828a-d983a78af5c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:16:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:18:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json b/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json index 96e68d4c9de0..617278f2f8ce 100644 --- a/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json +++ b/src/Kusto/test/Remove-AzKustoAttachedDatabaseConfiguration.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+1": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\"\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "46c8ca33-879b-4c54-afc6-9ff614fdd3b6" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f0be0993-bdbc-4737-98b8-53d551833816?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "59ef56e2-3461-4ef5-ac3c-61eddc946b22" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/27b712cd-2530-4c6e-9f2a-18af0ca27c9f?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "194" ], - "x-ms-correlation-request-id": [ "e17aa88f-fe24-4aa5-8d8a-336f4714fe72" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122043Z:e17aa88f-fe24-4aa5-8d8a-336f4714fe72" ], + "x-ms-correlation-request-id": [ "fa2f390c-7cff-41ad-bb69-b08bfde7029d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002225Z:fa2f390c-7cff-41ad-bb69-b08bfde7029d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:20:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7\",\"name\":\"testclusterpb8oay/testdatabaseaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8\",\"name\":\"testclusterlbfexs/testdatabaser4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f0be0993-bdbc-4737-98b8-53d551833816?api-version=2020-02-15+2": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/27b712cd-2530-4c6e-9f2a-18af0ca27c9f?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f0be0993-bdbc-4737-98b8-53d551833816?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/27b712cd-2530-4c6e-9f2a-18af0ca27c9f?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "331", "332" ], - "x-ms-client-request-id": [ "cdb42a54-397b-4a0f-a2cc-65f9fc4d756c", "cdb42a54-397b-4a0f-a2cc-65f9fc4d756c" ], + "x-ms-unique-id": [ "355", "356" ], + "x-ms-client-request-id": [ "1cea24f6-edaf-48eb-87da-ea66cbcdcc7b", "1cea24f6-edaf-48eb-87da-ea66cbcdcc7b" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "69f76a67-be86-48cd-8669-6a0f57bd69d1" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "ce70867f-e7c2-4b0c-ad05-a4284a862333" ], + "x-ms-request-id": [ "13b9dd09-2a91-42e4-85f3-4cd7c0cdb1ca" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "440e1a8f-c470-441e-bab3-f1909637567a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122114Z:440e1a8f-c470-441e-bab3-f1909637567a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002256Z:ce70867f-e7c2-4b0c-ad05-a4284a862333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f0be0993-bdbc-4737-98b8-53d551833816\",\"name\":\"f0be0993-bdbc-4737-98b8-53d551833816\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:20:43.7805716Z\",\"endTime\":\"2020-05-07T12:20:45.4524205Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"c606045d-a113-4ea7-89ec-d43cf60fab01\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/27b712cd-2530-4c6e-9f2a-18af0ca27c9f\",\"name\":\"27b712cd-2530-4c6e-9f2a-18af0ca27c9f\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:22:24.9006743Z\",\"endTime\":\"2020-08-03T00:22:26.3226758Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"2bfc9b02-e327-493c-981d-0ca3aace71b1\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+3": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "331", "332", "333" ], - "x-ms-client-request-id": [ "cdb42a54-397b-4a0f-a2cc-65f9fc4d756c", "cdb42a54-397b-4a0f-a2cc-65f9fc4d756c", "cdb42a54-397b-4a0f-a2cc-65f9fc4d756c" ], + "x-ms-unique-id": [ "355", "356", "357" ], + "x-ms-client-request-id": [ "1cea24f6-edaf-48eb-87da-ea66cbcdcc7b", "1cea24f6-edaf-48eb-87da-ea66cbcdcc7b", "1cea24f6-edaf-48eb-87da-ea66cbcdcc7b" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -101,29 +101,29 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "e9f26af5-89dd-43df-acdf-2cd5cbfa68af" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "229eb743-6b4e-4fc8-b0c6-42cf3dd5321d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b0f0d2fe-ab5c-4ed5-a515-246f475b54d3" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122114Z:b0f0d2fe-ab5c-4ed5-a515-246f475b54d3" ], + "x-ms-correlation-request-id": [ "a7bacef4-70e4-4961-9a3a-2aaf0e54d86a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002257Z:a7bacef4-70e4-4961-9a3a-2aaf0e54d86a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "471" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7\",\"name\":\"testclusterpb8oay/testdatabaseaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8\",\"name\":\"testclusterlbfexs/testdatabaser4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15+4": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15", - "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\r\n \"databaseName\": \"testdatabaseaxb9i7\",\r\n \"defaultPrincipalsModificationKind\": \"Union\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14", + "Content": "{\r\n \"properties\": {\r\n \"clusterResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\r\n \"databaseName\": \"testdatabaser4qwo8\",\r\n \"defaultPrincipalsModificationKind\": \"Union\"\r\n },\r\n \"location\": \"East US\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -137,33 +137,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "b05a332c-4cd5-4111-8323-f893979c3601" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/babb2f12-0318-4f7d-ab17-ceefe88f6b2f?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "dcfc62e6-f572-412c-b4d8-d5a4e8fe8c30" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/007948af-6a79-439c-99fb-afa2053dfddd?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], - "x-ms-correlation-request-id": [ "6edac822-daaa-49e1-b173-4ffb3a9aefb9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122115Z:6edac822-daaa-49e1-b173-4ffb3a9aefb9" ], + "x-ms-correlation-request-id": [ "686400f6-2308-40a8-af5e-66e701d26a29" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002258Z:686400f6-2308-40a8-af5e-66e701d26a29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:22:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "622" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7\",\"name\":\"testfcluster25n9il/testdbconfaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabaseaxb9i7\",\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8\",\"name\":\"testfclusterbgiwc7/testdbconfr4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabaser4qwo8\",\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Creating\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/babb2f12-0318-4f7d-ab17-ceefe88f6b2f?api-version=2020-02-15+5": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/007948af-6a79-439c-99fb-afa2053dfddd?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/babb2f12-0318-4f7d-ab17-ceefe88f6b2f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/007948af-6a79-439c-99fb-afa2053dfddd?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "334", "335" ], - "x-ms-client-request-id": [ "fb149dce-8c11-4282-828e-06046eae8322", "fb149dce-8c11-4282-828e-06046eae8322" ], + "x-ms-unique-id": [ "358", "359" ], + "x-ms-client-request-id": [ "8ad33de8-dd08-44b5-a3fc-7b186f67807e", "8ad33de8-dd08-44b5-a3fc-7b186f67807e" ], "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -179,32 +179,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "194489d7-eeb8-47fb-9090-5f1f0e57d289" ], - "x-ms-request-id": [ "b7fef97f-7aae-4edb-bca1-75bb87606775" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "1efab69a-ae47-4884-aed9-d19f37bef079" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122145Z:194489d7-eeb8-47fb-9090-5f1f0e57d289" ], + "x-ms-correlation-request-id": [ "8450b079-d18c-48fa-b18c-751f3dda635c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002328Z:8450b079-d18c-48fa-b18c-751f3dda635c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:23:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "502" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/babb2f12-0318-4f7d-ab17-ceefe88f6b2f\",\"name\":\"babb2f12-0318-4f7d-ab17-ceefe88f6b2f\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:21:14.9974353Z\",\"endTime\":\"2020-05-07T12:21:21.6693548Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"d8bcbd76-4720-4ec8-ab17-eb377276d976\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/007948af-6a79-439c-99fb-afa2053dfddd\",\"name\":\"007948af-6a79-439c-99fb-afa2053dfddd\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:22:58.1915634Z\",\"endTime\":\"2020-08-03T00:23:00.70768Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"b6c3e91e-9005-451e-853d-1f6cbe5286fa\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15+6": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "334", "335", "336" ], - "x-ms-client-request-id": [ "fb149dce-8c11-4282-828e-06046eae8322", "fb149dce-8c11-4282-828e-06046eae8322", "fb149dce-8c11-4282-828e-06046eae8322" ], + "x-ms-unique-id": [ "358", "359", "360" ], + "x-ms-client-request-id": [ "8ad33de8-dd08-44b5-a3fc-7b186f67807e", "8ad33de8-dd08-44b5-a3fc-7b186f67807e", "8ad33de8-dd08-44b5-a3fc-7b186f67807e" ], "CommandName": [ "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration", "New-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded", "New-AzKustoAttachedDatabaseConfiguration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -222,31 +222,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "e0f1ffab-354f-4730-b199-1a428ad59d7d" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "e07eddcd-510f-4534-8618-3aacccdc28be" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e0e11d1a-a38a-4ea2-ad75-8853de904454" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122146Z:e0e11d1a-a38a-4ea2-ad75-8853de904454" ], + "x-ms-correlation-request-id": [ "cf7d4a47-d582-44a1-a051-6ae3f43c6c2f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002328Z:cf7d4a47-d582-44a1-a051-6ae3f43c6c2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:23:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7\",\"name\":\"testfcluster25n9il/testdbconfaxb9i7\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"databaseName\":\"testdatabaseaxb9i7\",\"attachedDatabaseNames\":[\"testdatabaseaxb9i7\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8\",\"name\":\"testfclusterbgiwc7/testdbconfr4qwo8\",\"type\":\"Microsoft.Kusto/Clusters/AttachedDatabaseConfigurations\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"clusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"databaseName\":\"testdatabaser4qwo8\",\"attachedDatabaseNames\":[\"testdatabaser4qwo8\"],\"defaultPrincipalsModificationKind\":\"Union\",\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15+7": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14+7": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/AttachedDatabaseConfigurations/testdbconfaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/AttachedDatabaseConfigurations/testdbconfr4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "337" ], - "x-ms-client-request-id": [ "b85af9a1-53df-475a-8081-fbcf230df738" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "4eb8cde9-0b8f-4442-8672-86a244b30e84" ], "CommandName": [ "Remove-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "Remove-AzKustoAttachedDatabaseConfiguration_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -261,17 +261,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b1b7ce67-0623-4f9a-9f0c-31b726a9a6f6?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b1b7ce67-0623-4f9a-9f0c-31b726a9a6f6?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/09b68c23-96d4-4419-89b8-1aceec664233?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/09b68c23-96d4-4419-89b8-1aceec664233?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14988" ], - "x-ms-request-id": [ "f4f967e3-474a-4854-9bf1-2f1b7fe015c1" ], - "x-ms-correlation-request-id": [ "f4f967e3-474a-4854-9bf1-2f1b7fe015c1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122146Z:f4f967e3-474a-4854-9bf1-2f1b7fe015c1" ], + "x-ms-request-id": [ "fa7ad8e6-df11-46f9-923e-3736cac7176c" ], + "x-ms-correlation-request-id": [ "fa7ad8e6-df11-46f9-923e-3736cac7176c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002329Z:fa7ad8e6-df11-46f9-923e-3736cac7176c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:21:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:23:28 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -280,14 +280,14 @@ "Content": null } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b1b7ce67-0623-4f9a-9f0c-31b726a9a6f6?api-version=2020-02-15+8": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/09b68c23-96d4-4419-89b8-1aceec664233?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b1b7ce67-0623-4f9a-9f0c-31b726a9a6f6?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/09b68c23-96d4-4419-89b8-1aceec664233?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "337", "338" ], - "x-ms-client-request-id": [ "b85af9a1-53df-475a-8081-fbcf230df738", "b85af9a1-53df-475a-8081-fbcf230df738" ], + "x-ms-unique-id": [ "361", "362" ], + "x-ms-client-request-id": [ "4eb8cde9-0b8f-4442-8672-86a244b30e84", "4eb8cde9-0b8f-4442-8672-86a244b30e84" ], "CommandName": [ "Remove-AzKustoAttachedDatabaseConfiguration", "Remove-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "Remove-AzKustoAttachedDatabaseConfiguration_Delete", "Remove-AzKustoAttachedDatabaseConfiguration_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -303,32 +303,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "0d8cdeaf-281b-4e08-b23d-5b1cff592c2d" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "c728b8d2-29eb-418d-a87a-fff96eee605b" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e88f34ba-57a7-498a-a2ee-1caf6e4206e5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122216Z:e88f34ba-57a7-498a-a2ee-1caf6e4206e5" ], + "x-ms-correlation-request-id": [ "6fba33d2-9bca-4b72-b484-80aa135abd49" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002359Z:6fba33d2-9bca-4b72-b484-80aa135abd49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:23:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b1b7ce67-0623-4f9a-9f0c-31b726a9a6f6\",\"name\":\"b1b7ce67-0623-4f9a-9f0c-31b726a9a6f6\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:21:46.3333689Z\",\"endTime\":\"2020-05-07T12:21:49.0677362Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"ff2a33c2-3ba9-4b44-bacb-bb904fb199c2\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/09b68c23-96d4-4419-89b8-1aceec664233\",\"name\":\"09b68c23-96d4-4419-89b8-1aceec664233\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:23:29.3013363Z\",\"endTime\":\"2020-08-03T00:23:33.1866774Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseDetach\",\"RootActivityId\":\"cf033952-5166-4dcf-94ba-831c7b666438\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b1b7ce67-0623-4f9a-9f0c-31b726a9a6f6?api-version=2020-02-15\u0026operationResultResponseType=Location+9": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/09b68c23-96d4-4419-89b8-1aceec664233?api-version=2020-06-14\u0026operationResultResponseType=Location+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b1b7ce67-0623-4f9a-9f0c-31b726a9a6f6?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/09b68c23-96d4-4419-89b8-1aceec664233?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "337", "338", "339" ], - "x-ms-client-request-id": [ "b85af9a1-53df-475a-8081-fbcf230df738", "b85af9a1-53df-475a-8081-fbcf230df738", "b85af9a1-53df-475a-8081-fbcf230df738" ], + "x-ms-unique-id": [ "361", "362", "363" ], + "x-ms-client-request-id": [ "4eb8cde9-0b8f-4442-8672-86a244b30e84", "4eb8cde9-0b8f-4442-8672-86a244b30e84", "4eb8cde9-0b8f-4442-8672-86a244b30e84" ], "CommandName": [ "Remove-AzKustoAttachedDatabaseConfiguration", "Remove-AzKustoAttachedDatabaseConfiguration", "Remove-AzKustoAttachedDatabaseConfiguration" ], "FullCommandName": [ "Remove-AzKustoAttachedDatabaseConfiguration_Delete", "Remove-AzKustoAttachedDatabaseConfiguration_Delete", "Remove-AzKustoAttachedDatabaseConfiguration_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -343,15 +343,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "95bbbbf4-7765-4113-ad90-ce0f5e9ab9ff" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "0c7be181-18fd-4ca6-b68f-3e64a92aa189" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-correlation-request-id": [ "86d6d58f-61e0-4f8b-a724-41b27220b02a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122216Z:86d6d58f-61e0-4f8b-a724-41b27220b02a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-correlation-request-id": [ "ca4e8c7b-8f74-4912-be44-be212c608d20" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002359Z:ca4e8c7b-8f74-4912-be44-be212c608d20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:23:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -360,14 +360,14 @@ "Content": null } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15+10": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabaseaxb9i7?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaser4qwo8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "340" ], - "x-ms-client-request-id": [ "805754f7-668a-44a3-809e-e2bf938c7369" ], + "x-ms-unique-id": [ "364" ], + "x-ms-client-request-id": [ "2429698d-c103-4fdc-bb87-d9e5db3e449e" ], "CommandName": [ "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -382,17 +382,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e933f573-e1a6-4d0a-bcb6-33646be2f046?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e933f573-e1a6-4d0a-bcb6-33646be2f046?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/98a278b1-5038-449f-bf79-feaeb20268c9?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/98a278b1-5038-449f-bf79-feaeb20268c9?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], - "x-ms-request-id": [ "87b1aa60-90a2-4afd-b5fc-929fc2378328" ], - "x-ms-correlation-request-id": [ "87b1aa60-90a2-4afd-b5fc-929fc2378328" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122217Z:87b1aa60-90a2-4afd-b5fc-929fc2378328" ], + "x-ms-request-id": [ "6a344004-90bc-450d-93e6-47a49294948f" ], + "x-ms-correlation-request-id": [ "6a344004-90bc-450d-93e6-47a49294948f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002400Z:6a344004-90bc-450d-93e6-47a49294948f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:23:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -401,14 +401,14 @@ "Content": null } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e933f573-e1a6-4d0a-bcb6-33646be2f046?api-version=2020-02-15+11": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/98a278b1-5038-449f-bf79-feaeb20268c9?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e933f573-e1a6-4d0a-bcb6-33646be2f046?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/98a278b1-5038-449f-bf79-feaeb20268c9?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "340", "341" ], - "x-ms-client-request-id": [ "805754f7-668a-44a3-809e-e2bf938c7369", "805754f7-668a-44a3-809e-e2bf938c7369" ], + "x-ms-unique-id": [ "364", "365" ], + "x-ms-client-request-id": [ "2429698d-c103-4fdc-bb87-d9e5db3e449e", "2429698d-c103-4fdc-bb87-d9e5db3e449e" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -424,32 +424,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "e8b03f6e-3442-4e05-b435-7becd1120696" ], - "x-ms-request-id": [ "2950acd8-0065-4de1-85d9-8c79194a14c3" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-request-id": [ "cf7b0050-ef7e-4a85-b648-9f8e3b7d665b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122247Z:e8b03f6e-3442-4e05-b435-7becd1120696" ], + "x-ms-correlation-request-id": [ "2aa336d6-c499-4f21-b3ba-3d07018c9117" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002430Z:2aa336d6-c499-4f21-b3ba-3d07018c9117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:24:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e933f573-e1a6-4d0a-bcb6-33646be2f046\",\"name\":\"e933f573-e1a6-4d0a-bcb6-33646be2f046\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:22:17.1352155Z\",\"endTime\":\"2020-05-07T12:22:18.9789853Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"0af6c13f-13ab-4b3e-a8c0-15b146114303\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/98a278b1-5038-449f-bf79-feaeb20268c9\",\"name\":\"98a278b1-5038-449f-bf79-feaeb20268c9\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:24:00.1404211Z\",\"endTime\":\"2020-08-03T00:24:01.8281131Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"ee550703-343d-4533-a847-6d62a91950d5\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e933f573-e1a6-4d0a-bcb6-33646be2f046?api-version=2020-02-15\u0026operationResultResponseType=Location+12": { + "Remove-AzKustoAttachedDatabaseConfiguration+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/98a278b1-5038-449f-bf79-feaeb20268c9?api-version=2020-06-14\u0026operationResultResponseType=Location+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e933f573-e1a6-4d0a-bcb6-33646be2f046?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/98a278b1-5038-449f-bf79-feaeb20268c9?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "340", "341", "342" ], - "x-ms-client-request-id": [ "805754f7-668a-44a3-809e-e2bf938c7369", "805754f7-668a-44a3-809e-e2bf938c7369", "805754f7-668a-44a3-809e-e2bf938c7369" ], + "x-ms-unique-id": [ "364", "365", "366" ], + "x-ms-client-request-id": [ "2429698d-c103-4fdc-bb87-d9e5db3e449e", "2429698d-c103-4fdc-bb87-d9e5db3e449e", "2429698d-c103-4fdc-bb87-d9e5db3e449e" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -464,15 +464,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "788c4e76-29ba-47ea-8479-78f66919b837" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "7c27f7e8-62e6-417d-b5aa-b87492b10429" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-correlation-request-id": [ "9e627635-cdf6-4a8b-88a2-669cda6aafe2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122248Z:9e627635-cdf6-4a8b-88a2-669cda6aafe2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], + "x-ms-correlation-request-id": [ "f5df4b64-8000-4cc3-8209-629c5ac3bef9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002430Z:f5df4b64-8000-4cc3-8209-629c5ac3bef9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:24:29 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoCluster.Recording.json b/src/Kusto/test/Remove-AzKustoCluster.Recording.json index 5cb0e5e95dda..c28e6976d3ea 100644 --- a/src/Kusto/test/Remove-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Remove-AzKustoCluster.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzKustoCluster+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15+1": { + "Remove-AzKustoCluster+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", "Content": "{\r\n \"location\": \"East US\",\r\n \"sku\": {\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "c84d0c05-3ba5-480c-bf46-69d4ba5566cf" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "341e30e3-d074-4b4e-93a8-4a34753d1767" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "1392e39f-9285-4e7b-8fce-3122866f622c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122251Z:1392e39f-9285-4e7b-8fce-3122866f622c" ], + "x-ms-correlation-request-id": [ "01869c99-735b-4450-8fe8-a9f11cad39ac" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002434Z:01869c99-735b-4450-8fe8-a9f11cad39ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:22:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:24:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "356" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf\",\"name\":\"testclusteri6wlsf\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\"},\"properties\":{\"state\":\"Creating\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho\",\"name\":\"testclustersu8yho\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\"},\"properties\":{\"state\":\"Creating\",\"provisioningState\":\"Creating\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+2": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "x-ms-request-id": [ "b21d0dad-6d3d-4935-a0e4-86b921015216" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "46858c6b-20dd-4d9e-92e3-b1bf2c461402" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0d4961e8-e685-4eca-bf10-7d242a1548a6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122321Z:0d4961e8-e685-4eca-bf10-7d242a1548a6" ], + "x-ms-correlation-request-id": [ "2d2838ca-4892-4e17-a945-9e29ce7cbddf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002504Z:2d2838ca-4892-4e17-a945-9e29ce7cbddf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:23:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:25:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+3": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -100,32 +100,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "75a8e5f4-f83c-44ec-bbb5-0f751a36f3e0" ], - "x-ms-request-id": [ "8ee34618-ba10-4672-a530-8cf792ff0b9c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "8dbcbf36-c11d-4b5f-b055-e6bb9ab6e8fe" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122352Z:75a8e5f4-f83c-44ec-bbb5-0f751a36f3e0" ], + "x-ms-correlation-request-id": [ "b55515a7-da4b-4cb3-aacb-f393635431bf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002534Z:b55515a7-da4b-4cb3-aacb-f393635431bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:23:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:25:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+4": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -141,32 +141,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "275" ], - "x-ms-request-id": [ "dfbe27ac-6e2e-4875-b70e-b4d5da423506" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "c7d9dd77-21d9-4a2b-8a29-c04ccfdeae60" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "07472646-ab64-4e13-82f6-75fa46f39b3a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122422Z:07472646-ab64-4e13-82f6-75fa46f39b3a" ], + "x-ms-correlation-request-id": [ "1fafc460-342c-4b8c-8e33-80a680125e70" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002605Z:1fafc460-342c-4b8c-8e33-80a680125e70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:24:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:26:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+5": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -182,32 +182,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "274" ], - "x-ms-request-id": [ "8f131edc-e060-4391-b797-020b58972cbb" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "d5c91dfd-ed42-4276-8f4e-2f472dc3b0d9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8099c9ec-131f-4574-b88a-e51320ce6bf2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122452Z:8099c9ec-131f-4574-b88a-e51320ce6bf2" ], + "x-ms-correlation-request-id": [ "df35fd40-c4dd-42bc-86f9-0ff2712eae4b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002635Z:df35fd40-c4dd-42bc-86f9-0ff2712eae4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:24:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:26:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+6": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,32 +223,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "dff09c60-4ca1-4cd9-97f1-22ef2f90e349" ], - "x-ms-request-id": [ "1187c1e5-b7c1-4397-a90c-6e66c1464925" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "d7591997-65ee-4dff-9fe2-79a87797388a" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122523Z:dff09c60-4ca1-4cd9-97f1-22ef2f90e349" ], + "x-ms-correlation-request-id": [ "de46cf5f-7099-46f2-b779-6453c6ff5b65" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002705Z:de46cf5f-7099-46f2-b779-6453c6ff5b65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:25:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:27:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:24:33.760584Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+7": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -264,32 +264,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "e16a80e3-b9c0-427a-8c90-f3260c072c83" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "68d50398-5b0e-45a7-84e9-963b24d4c514" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7790f044-0c7a-45d0-9760-94d0b789b2ab" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122553Z:7790f044-0c7a-45d0-9760-94d0b789b2ab" ], + "x-ms-correlation-request-id": [ "e19b607a-e0c9-47aa-b54f-6d91f3195b43" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002735Z:e19b607a-e0c9-47aa-b54f-6d91f3195b43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:25:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:27:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+8": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -305,32 +305,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "dd12e093-4e65-4293-bd82-3396eda7061f" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "c639b6ed-5181-4cb5-8fd5-2da54cd56436" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "cca9f54e-0956-49b8-b175-14f034b2f91f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122623Z:cca9f54e-0956-49b8-b175-14f034b2f91f" ], + "x-ms-correlation-request-id": [ "d2df675f-030c-4667-84d9-485a9c4e6763" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002806Z:d2df675f-030c-4667-84d9-485a9c4e6763" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:26:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:28:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+9": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -346,32 +346,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "877c3577-1405-44df-8c69-fcc65e471044" ], - "x-ms-request-id": [ "9ca18cdf-a09f-4349-8044-68177f2bf418" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "af2ba33d-a767-4d15-926d-4781c9f52fc9" ], + "x-ms-request-id": [ "8a311756-bf50-4156-a9be-98713b6f6b47" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122654Z:877c3577-1405-44df-8c69-fcc65e471044" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002836Z:af2ba33d-a767-4d15-926d-4781c9f52fc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:26:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:28:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+10": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -387,32 +387,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "e7670b48-81a0-42aa-80c9-9c7c84f88da6" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "bf5cb260-8139-46b8-85da-ab4cda3a14b3" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7937ff2e-59a3-4b8b-88f7-5c7b5019a45b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122724Z:7937ff2e-59a3-4b8b-88f7-5c7b5019a45b" ], + "x-ms-correlation-request-id": [ "619a7459-84e0-47c3-be20-91dc9ed7cb63" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002906Z:619a7459-84e0-47c3-be20-91dc9ed7cb63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:27:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:29:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+11": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -428,32 +428,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "dd9b8e8e-13f4-4cbf-9381-faa79630ce40" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-request-id": [ "70c80df9-50b2-4a8f-9012-797a19315227" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fd122a91-a661-404d-b61f-c9ff4f561a6a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122754Z:fd122a91-a661-404d-b61f-c9ff4f561a6a" ], + "x-ms-correlation-request-id": [ "8de742cb-dfe7-491b-8209-9d81570edb92" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T002937Z:8de742cb-dfe7-491b-8209-9d81570edb92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:27:54 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:29:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+12": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -469,32 +469,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "260f4f58-47c8-4ce7-9bba-d07233354e77" ], - "x-ms-request-id": [ "da8e1d66-4102-4e26-bb65-6f978613444f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "c1947971-46c3-4435-9809-4ca8b9c5fd3d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122825Z:260f4f58-47c8-4ce7-9bba-d07233354e77" ], + "x-ms-correlation-request-id": [ "833ca7e6-4bb2-4ad1-98c1-6f4f7e52fd11" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003007Z:833ca7e6-4bb2-4ad1-98c1-6f4f7e52fd11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:28:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:30:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+13": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -510,32 +510,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "2a0dc012-87eb-436d-9a78-0c341c05cd73" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "f96169f7-cd1c-4ef3-b261-a04a4b8bb0ac" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "32a3f264-9be5-49d2-9107-a71a488c0eac" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122855Z:32a3f264-9be5-49d2-9107-a71a488c0eac" ], + "x-ms-correlation-request-id": [ "a03dcd48-3d8b-4c13-80a4-127ffe762065" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003037Z:a03dcd48-3d8b-4c13-80a4-127ffe762065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:28:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:30:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+14": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -551,32 +551,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "f1795af7-647c-49fd-b916-9c459a7a5dc9" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "f6fcebb9-79f5-483b-8483-931075687fb3" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "23231dd4-1962-4281-b57e-04371cdaabf3" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122925Z:23231dd4-1962-4281-b57e-04371cdaabf3" ], + "x-ms-correlation-request-id": [ "e2975dc5-baa9-4341-b08e-e04ca80a5627" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003107Z:e2975dc5-baa9-4341-b08e-e04ca80a5627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:29:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:31:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+15": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -592,32 +592,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "f932e4d6-747e-4863-9a5e-2a9a8af09542" ], - "x-ms-request-id": [ "710dfa0e-d200-41c6-a94b-e6998e8e8f81" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "ccb5ab9b-b665-4b97-8e2a-a6e0d89b2fd4" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T122956Z:f932e4d6-747e-4863-9a5e-2a9a8af09542" ], + "x-ms-correlation-request-id": [ "e97a255a-55d2-49fc-b3d7-c5f07e5cf11c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003137Z:e97a255a-55d2-49fc-b3d7-c5f07e5cf11c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:29:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:31:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+16": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -633,32 +633,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "17dc162c-46ea-43f1-95ca-0fd16f7b7bcf" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "8eca0afa-cef1-47ea-91af-44fdbe679960" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "34ed10dc-9c75-444f-af71-15283943dbac" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123026Z:34ed10dc-9c75-444f-af71-15283943dbac" ], + "x-ms-correlation-request-id": [ "9aa08976-7974-4555-9daa-91e0b4ed0571" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003208Z:9aa08976-7974-4555-9daa-91e0b4ed0571" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:30:26 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:32:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+17": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -674,32 +674,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "e0783124-c5c8-4736-b361-851d08f74dbd" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "b62883a3-c5b3-4dd1-af7d-41137319db1e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "59e4f9af-8f5a-49e4-b9d3-9a0bae517891" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123056Z:59e4f9af-8f5a-49e4-b9d3-9a0bae517891" ], + "x-ms-correlation-request-id": [ "7f026c24-de1c-4647-a4b0-780667a12088" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003238Z:7f026c24-de1c-4647-a4b0-780667a12088" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:30:56 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:32:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+18": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -715,32 +715,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "e26636c0-22e8-4b37-8c77-087a9a14b21d" ], - "x-ms-request-id": [ "4c4f0039-f1a4-4ee1-97e1-bb0148806258" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "2566c804-d43a-4c97-85e4-891d453b91d1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123127Z:e26636c0-22e8-4b37-8c77-087a9a14b21d" ], + "x-ms-correlation-request-id": [ "b8ae40d6-c220-4732-813b-5f8880b56cab" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003309Z:b8ae40d6-c220-4732-813b-5f8880b56cab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:31:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:33:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+19": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -756,32 +756,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "4802d205-90e8-4cbe-b20d-620a44843e65" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "8a8be003-5b22-4b4d-aacd-4f2d822e17e3" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a6478ea1-fc5e-4667-b0e7-d5de42ebfb65" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123157Z:a6478ea1-fc5e-4667-b0e7-d5de42ebfb65" ], + "x-ms-correlation-request-id": [ "3e256f19-7607-4236-92cd-ba5b992616f7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003339Z:3e256f19-7607-4236-92cd-ba5b992616f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:31:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:33:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+20": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -797,32 +797,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "11cc74c3-77a2-460b-b4dc-cd72d76fb0cc" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "7689b2cc-10e2-4f29-953b-37ce8bebbbe0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4a855150-b287-40da-8fd4-474df1041439" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123227Z:4a855150-b287-40da-8fd4-474df1041439" ], + "x-ms-correlation-request-id": [ "eed98c3b-6c81-4a42-9f45-2126df88548a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003409Z:eed98c3b-6c81-4a42-9f45-2126df88548a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:32:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:34:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+21": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -838,32 +838,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "141ba1ac-753b-4367-a998-3f37599b0faa" ], - "x-ms-request-id": [ "461a1d07-2398-4a83-8206-e047d1b06204" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "5e921eda-71eb-4dba-a21f-d109f352aa3d" ], + "x-ms-request-id": [ "198993d5-0730-4af6-8754-a80b9d9420d7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123258Z:141ba1ac-753b-4367-a998-3f37599b0faa" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003439Z:5e921eda-71eb-4dba-a21f-d109f352aa3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:32:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:34:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+22": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363", "364" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -879,32 +879,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "43d9183d-6790-4ce5-b5d2-c60cf1072876" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "fdccf556-8318-46e4-8e2b-7a3fddaa68f2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "972fee3c-31c3-4b37-be65-a6b9eba3c301" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123328Z:972fee3c-31c3-4b37-be65-a6b9eba3c301" ], + "x-ms-correlation-request-id": [ "e0a2cf41-399d-4824-9e51-f51a49728c1f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003510Z:e0a2cf41-399d-4824-9e51-f51a49728c1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:33:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:35:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+23": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363", "364", "365" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -920,32 +920,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "8e9ff979-2b3b-474b-9938-69dc68615d48" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "170e393f-9e1c-458a-8868-924dbcf5257c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0a7896f0-b5e8-4998-bcea-feb5bafc34f7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123359Z:0a7896f0-b5e8-4998-bcea-feb5bafc34f7" ], + "x-ms-correlation-request-id": [ "10ffe428-3db3-4d11-9448-cbfc31b2b436" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003540Z:10ffe428-3db3-4d11-9448-cbfc31b2b436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:33:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+24": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -961,32 +961,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "65d50c98-2858-4018-91a2-ae9cb0e084f8" ], - "x-ms-request-id": [ "ca443110-593c-46d5-b845-a203dfc62b76" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "193c5c1f-c3f5-4911-a5fc-63387006ceb7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123429Z:65d50c98-2858-4018-91a2-ae9cb0e084f8" ], + "x-ms-correlation-request-id": [ "2ecd617b-5ad3-4e0d-8d73-08b932f9ac3f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003610Z:2ecd617b-5ad3-4e0d-8d73-08b932f9ac3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:34:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:36:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "470" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:22:53.5622996Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15+25": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80074b6a-38e9-47d1-ae61-db8177abb810?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1002,32 +1002,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "d311db81-6830-4527-903a-ed7312397872" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "c1750f70-47cf-4dba-96a4-7998d35de871" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "dfeee56e-5099-471c-a29d-84f6fef124e9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123459Z:dfeee56e-5099-471c-a29d-84f6fef124e9" ], + "x-ms-correlation-request-id": [ "311d2f97-788d-4e28-9b32-96f20d3ebef6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003640Z:311d2f97-788d-4e28-9b32-96f20d3ebef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:34:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:36:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80074b6a-38e9-47d1-ae61-db8177abb810\",\"name\":\"80074b6a-38e9-47d1-ae61-db8177abb810\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:22:50.9372632Z\",\"endTime\":\"2020-05-07T12:34:45.464279Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"99c7175b-6ff4-44de-9733-584a4af590d9\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15+26": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368" ], - "x-ms-client-request-id": [ "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb", "ba74e205-50f6-4b45-b4d4-dd1a34c21dfb" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1042,79 +1042,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "af2ed1d6-ccc0-4994-95bc-21cf526cd4b3" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "8012e8f3-2e84-48a0-b1d9-b144c0ccf251" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c4214824-0f9c-40f2-882b-7ee186a051f8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123500Z:c4214824-0f9c-40f2-882b-7ee186a051f8" ], + "x-ms-correlation-request-id": [ "b179a626-fcdd-4c3c-9a94-0433f113d6c0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003711Z:b179a626-fcdd-4c3c-9a94-0433f113d6c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:34:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:37:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf\",\"name\":\"testclusteri6wlsf\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusteri6wlsf.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusteri6wlsf.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15+27": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusteri6wlsf?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], - "x-ms-request-id": [ "0d08afb2-bd5e-4d96-9795-08c6ab6fd76f" ], - "x-ms-correlation-request-id": [ "0d08afb2-bd5e-4d96-9795-08c6ab6fd76f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123500Z:0d08afb2-bd5e-4d96-9795-08c6ab6fd76f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:34:59 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+28": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], + "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], + "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1126,36 +1084,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "ca8e975b-6bea-45e6-a8a0-8a36d45cbdcf" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "e9a6a602-5821-4795-a3d4-6c6be3ccbfd1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d52313ff-d48a-409b-ab17-efc48b12b194" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123530Z:d52313ff-d48a-409b-ab17-efc48b12b194" ], + "x-ms-correlation-request-id": [ "342e3d6b-7f14-4318-a56c-a24ed7939cda" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003741Z:342e3d6b-7f14-4318-a56c-a24ed7939cda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:35:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:37:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:27:08.3607874Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+29": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], + "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], + "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1167,36 +1125,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8352cd9f-7980-49aa-beb6-3385648a1f20" ], - "x-ms-request-id": [ "8eb6c0b5-55bb-4e8d-b466-0050ca24980f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "ce7aab8f-c39a-4611-af5f-3832d97bf707" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123600Z:8352cd9f-7980-49aa-beb6-3385648a1f20" ], + "x-ms-correlation-request-id": [ "09d3b1d0-90a0-42c9-8d86-95d03d9ac18a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003811Z:09d3b1d0-90a0-42c9-8d86-95d03d9ac18a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:36:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:38:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "502" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"name\":\"73dbcf97-e0b1-43b9-97ba-7cf92585d9f3\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:24:33.760584Z\",\"endTime\":\"2020-08-03T00:37:55.6153145Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterCreateExternal\",\"RootActivityId\":\"cc50e5ba-29cc-4dc5-837c-64d6febf4ff0\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+30": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395" ], + "x-ms-client-request-id": [ "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28", "f24e8d68-7ca8-4638-92a9-62794a5ccc28" ], + "CommandName": [ "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster", "New-AzKustoCluster" ], + "FullCommandName": [ "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded", "New-AzKustoCluster_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1207,78 +1165,79 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "9175e74b-85b8-4949-9eb7-6367bfdce4b7" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "a00e42d3-6fb6-4033-9593-18de3e0fb6c9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "46c52700-6767-4984-8d9d-18455314241e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123631Z:46c52700-6767-4984-8d9d-18455314241e" ], + "x-ms-correlation-request-id": [ "1c740779-e4c8-400b-bbd6-d2d58c6829a7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003811Z:1c740779-e4c8-400b-bbd6-d2d58c6829a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:36:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:38:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho\",\"name\":\"testclustersu8yho\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclustersu8yho.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclustersu8yho.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+31": { + "Remove-AzKustoCluster+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14+30": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclustersu8yho?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "949b6405-995a-461a-bb7e-b90d2076fd6b" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "60ffafe4-ef92-4a01-a638-a935e0bc0736" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123701Z:60ffafe4-ef92-4a01-a638-a935e0bc0736" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], + "x-ms-request-id": [ "34bed749-6b77-41d2-99cf-0355db2ac0ca" ], + "x-ms-correlation-request-id": [ "34bed749-6b77-41d2-99cf-0355db2ac0ca" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003812Z:34bed749-6b77-41d2-99cf-0355db2ac0ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:37:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:38:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": null } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+32": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1290,36 +1249,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "010dbebd-db16-4700-bc33-cfb6b166b7b2" ], - "x-ms-request-id": [ "6371181f-3aad-400f-89e0-f9e1c0cb207e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "3c45a638-9acc-4b98-9577-957c09d2e705" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123732Z:010dbebd-db16-4700-bc33-cfb6b166b7b2" ], + "x-ms-correlation-request-id": [ "8eb7a4cd-c12b-473b-914c-42ff962c5351" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003842Z:8eb7a4cd-c12b-473b-914c-42ff962c5351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:37:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:38:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+33": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1331,36 +1290,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "4160c1f1-ef39-426f-824e-37ead8e32170" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "bc64d74a-ac8c-4d88-bc6a-1b8d14131c9b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a046f820-0fae-412f-b04d-c435d2886286" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123802Z:a046f820-0fae-412f-b04d-c435d2886286" ], + "x-ms-correlation-request-id": [ "4271a5b4-ec82-43a2-91f8-160355ae731a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003912Z:4271a5b4-ec82-43a2-91f8-160355ae731a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:38:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:39:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+34": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1372,36 +1331,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "3e41258f-7626-4b3a-a9a4-0187f74ad2de" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "8f781c91-0b36-422e-8072-e31b02ca3d5d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bb344071-181e-4a58-b389-2b4ae614d3d5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123832Z:bb344071-181e-4a58-b389-2b4ae614d3d5" ], + "x-ms-correlation-request-id": [ "4bce12e2-7969-44be-9eec-e1424cea7690" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T003943Z:4bce12e2-7969-44be-9eec-e1424cea7690" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:38:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:39:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+35": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1413,36 +1372,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "43e51a09-728f-4d7f-bafd-0519371d83fb" ], - "x-ms-request-id": [ "4f884fca-96cf-422c-8f82-306138f5e2be" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "69fbd3da-d1e6-418f-8e8b-b3ac91e69d33" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123903Z:43e51a09-728f-4d7f-bafd-0519371d83fb" ], + "x-ms-correlation-request-id": [ "655b7c1c-6ba2-4aa9-a990-efbcb918c662" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004013Z:655b7c1c-6ba2-4aa9-a990-efbcb918c662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:39:02 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:40:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+36": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1454,36 +1413,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "c026a433-956c-4879-8426-0fb8145adb0a" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "747db6eb-0408-474d-9b0c-8517755a9b18" ], + "x-ms-request-id": [ "59b13ea2-fb03-4d51-8f9f-1c9cb80e6e66" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fe62e387-fc6f-4ea1-b8dd-33e4bcdf2f8c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T123933Z:fe62e387-fc6f-4ea1-b8dd-33e4bcdf2f8c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004043Z:747db6eb-0408-474d-9b0c-8517755a9b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:39:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:40:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+37": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1495,36 +1454,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "b5d2d3e9-1473-4174-ba1e-ad2f6a4dbd92" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "a67c716e-961a-4c95-9ce4-517562451032" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "825ea09a-5d69-47e4-bd1b-7bf30fcaa5aa" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124004Z:825ea09a-5d69-47e4-bd1b-7bf30fcaa5aa" ], + "x-ms-correlation-request-id": [ "58040b1c-6527-435f-a46a-e8ef84d806f9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004114Z:58040b1c-6527-435f-a46a-e8ef84d806f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:40:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:41:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+38": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1536,36 +1495,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "4a23dd5b-19ef-4dd9-a95f-f79ea058d1d6" ], - "x-ms-request-id": [ "4cb1ccdb-076e-497e-877f-47a0be94607e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "98fc3d1c-5f13-4f49-bbc7-f9dc1af063d2" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124034Z:4a23dd5b-19ef-4dd9-a95f-f79ea058d1d6" ], + "x-ms-correlation-request-id": [ "a82ddc9e-eac6-4ad9-bd2e-d55ee1427f0e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004144Z:a82ddc9e-eac6-4ad9-bd2e-d55ee1427f0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:40:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:41:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+39": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1577,36 +1536,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "2f1ee80e-dca6-4c60-b4dd-2bfc8f0838bf" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "80edc479-ced3-4b58-bb6b-b3933abf007d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "35947837-ea2c-4dc2-aec5-d2ea9ec5f5eb" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124104Z:35947837-ea2c-4dc2-aec5-d2ea9ec5f5eb" ], + "x-ms-correlation-request-id": [ "b4ab0a5b-3451-4b2c-b5ab-c47d46ccc357" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004214Z:b4ab0a5b-3451-4b2c-b5ab-c47d46ccc357" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:41:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:42:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+40": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1618,36 +1577,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "49d05fac-527f-4fff-8804-6a03db75497b" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "bdda0b51-3e98-4a6d-b185-2a11ab380dd6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "acaeeefe-7fbb-4ba8-8014-376460e6fabd" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124135Z:acaeeefe-7fbb-4ba8-8014-376460e6fabd" ], + "x-ms-correlation-request-id": [ "f582c535-e391-48a4-84d4-418492ee8bcd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004244Z:f582c535-e391-48a4-84d4-418492ee8bcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:41:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:42:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+41": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1659,36 +1618,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "1958fc8a-1262-40aa-8e2f-f4fdbfa1cd6a" ], - "x-ms-request-id": [ "eb0bb4c0-b66a-42ae-97e3-89dccb3d2f5a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "3a3cb016-a9ea-4810-b5ea-a7f54ba5c152" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124205Z:1958fc8a-1262-40aa-8e2f-f4fdbfa1cd6a" ], + "x-ms-correlation-request-id": [ "7e21ee78-a467-4bef-a073-1fff023968a3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004315Z:7e21ee78-a467-4bef-a073-1fff023968a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:42:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:43:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+42": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1700,36 +1659,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "14cf97f0-b07d-44bf-992f-3a9e356f4423" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "4ec394d8-1f46-4688-8091-8a6de01dca0f" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4b25023f-1c5b-4ca6-9b48-543ca66d421e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124235Z:4b25023f-1c5b-4ca6-9b48-543ca66d421e" ], + "x-ms-correlation-request-id": [ "ed2a6870-b25d-44e5-94ef-5a6f3b948657" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004345Z:ed2a6870-b25d-44e5-94ef-5a6f3b948657" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:42:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:43:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:38:13.2370013Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+43": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14+42": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407", "408" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1741,36 +1700,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "083a3acf-32c7-444a-b69a-61b41285d0c5" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "983887cb-ac35-4435-a408-bc9528716ce2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5988eb07-a3ad-4532-aabf-a6d7998eca5b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124306Z:5988eb07-a3ad-4532-aabf-a6d7998eca5b" ], + "x-ms-correlation-request-id": [ "81ad576d-3274-4a28-8b79-7c0e527a8e91" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004415Z:81ad576d-3274-4a28-8b79-7c0e527a8e91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:43:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"name\":\"87f489c2-c4dd-40cd-9abd-d89414bc8e8a\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:38:12.3775603Z\",\"endTime\":\"2020-08-03T00:43:51.3724526Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"2dc1fffb-e304-4d9b-9499-b72d2df6e0a7\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+44": { + "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14\u0026operationResultResponseType=Location+43": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/87f489c2-c4dd-40cd-9abd-d89414bc8e8a?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407", "408", "409" ], + "x-ms-client-request-id": [ "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632", "3405bed9-c05d-4543-ac07-f9521eb3f632" ], + "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], + "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1781,958 +1740,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "b83f50a3-bab1-46ef-b52c-8e4700e03b86" ], - "x-ms-request-id": [ "1ad0d847-a3c0-4213-b507-73bf5e647b99" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "a7615ede-f54d-49ed-9b54-192138563f7c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124336Z:b83f50a3-bab1-46ef-b52c-8e4700e03b86" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:43:35 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+45": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "39d506b5-ba44-42da-8881-a6463bc640ae" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "28d4c9e6-fc09-4ca4-a8fe-a526104bbc41" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124406Z:28d4c9e6-fc09-4ca4-a8fe-a526104bbc41" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:44:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+46": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "2050435f-3c3b-497d-9c32-4ad1787ea33c" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fc2a4858-6074-4c04-a360-f18985df3464" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124437Z:fc2a4858-6074-4c04-a360-f18985df3464" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:44:36 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+47": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "d7a17e9f-b9ec-4652-bed0-82af7b269efb" ], - "x-ms-request-id": [ "afb95799-176d-4327-ad50-360d1d736109" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124507Z:d7a17e9f-b9ec-4652-bed0-82af7b269efb" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:45:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+48": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "75c37d33-8843-4ddb-a487-bcb6748015ba" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "66c56920-5b47-4d69-bfbe-2904e1fddbb5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124538Z:66c56920-5b47-4d69-bfbe-2904e1fddbb5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:45:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+49": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "8ee46ef1-45f7-47f0-858c-04f046dd4107" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ffcba534-b99b-4d25-9ccf-0d0dd40f6d41" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124608Z:ffcba534-b99b-4d25-9ccf-0d0dd40f6d41" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:46:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+50": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0be9c832-5de0-49bb-ae94-d1f6b119f347" ], - "x-ms-request-id": [ "d6e6d781-8a53-42e2-9b06-d45937f3f8cd" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124638Z:0be9c832-5de0-49bb-ae94-d1f6b119f347" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:46:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+51": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "ce54e441-1f2a-41c4-98e6-581ba2f87ff5" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "485dbd1a-fd08-494f-83ac-6937e6456b21" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124709Z:485dbd1a-fd08-494f-83ac-6937e6456b21" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:47:09 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+52": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "06f0692b-019e-4864-823f-0d6c7b65bc12" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "015f1696-a403-4bcb-896e-f237c6e3599b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124739Z:015f1696-a403-4bcb-896e-f237c6e3599b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:47:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+53": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "7d397ffb-befe-4e48-b913-157cf7970196" ], - "x-ms-request-id": [ "9af20561-989e-4a38-9d34-b8e35a8c0b23" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124809Z:7d397ffb-befe-4e48-b913-157cf7970196" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:48:08 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+54": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "e5fe3958-4bf0-41eb-be65-357a8d374bed" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d1d6324c-a20a-44e8-b451-c39509ec409b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124840Z:d1d6324c-a20a-44e8-b451-c39509ec409b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:48:40 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+55": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "c217023d-a941-451e-8cbc-068bcfb40c1f" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "66909856-241e-43c4-914c-dc6fbd494d4c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124910Z:66909856-241e-43c4-914c-dc6fbd494d4c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:49:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+56": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a3dbb82f-193a-4c23-b4ff-6d148d1103d5" ], - "x-ms-request-id": [ "62949316-2521-460b-9175-c896f5021374" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T124941Z:a3dbb82f-193a-4c23-b4ff-6d148d1103d5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:49:40 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+57": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "c6012057-93ce-4004-b07d-eb9bec82daeb" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3e0b4ab3-50d7-4b59-9cbc-42f56c5aada0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125011Z:3e0b4ab3-50d7-4b59-9cbc-42f56c5aada0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:50:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+58": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "0a47a81d-7f87-4164-97d8-e5be8229d7e3" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c33ae677-1173-4fca-8bff-251d4a20c1f2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125041Z:c33ae677-1173-4fca-8bff-251d4a20c1f2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:50:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+59": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "f927f1fc-acc7-471b-bd23-ecbfaf88a243" ], - "x-ms-request-id": [ "3bc4784b-38cd-4bc0-9845-fd20b104d432" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125112Z:f927f1fc-acc7-471b-bd23-ecbfaf88a243" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:51:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+60": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "170ec8e7-f4e8-4f16-b1cd-66c1be6d66cc" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a6ab019b-ba12-454e-9a51-a81b4eab0b6d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125142Z:a6ab019b-ba12-454e-9a51-a81b4eab0b6d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:51:42 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+61": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "30943a76-6065-4071-a734-4d2d4e010308" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "30cc7f7f-cb5e-4e07-b7c6-2d355a93ba11" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125212Z:30cc7f7f-cb5e-4e07-b7c6-2d355a93ba11" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:52:12 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+62": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "f88bf51f-6aba-4723-9bbc-664f73b6c3aa" ], - "x-ms-request-id": [ "944f7746-5909-4d45-955b-009b544a0a4c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125243Z:f88bf51f-6aba-4723-9bbc-664f73b6c3aa" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:52:42 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+63": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "a9608801-6dcb-4a3d-866b-94321dde7568" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "cc1ca242-6ce1-4535-bdf1-c1b06c2fb717" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125313Z:cc1ca242-6ce1-4535-bdf1-c1b06c2fb717" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:53:13 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+64": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "737560ef-a939-4ea0-9e6c-9255b2ba51a6" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8a65117c-0526-43fe-9291-4c33c20e398b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125344Z:8a65117c-0526-43fe-9291-4c33c20e398b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:53:43 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+65": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "4be17bc2-dcc9-4a6b-b487-67d536fbec7e" ], - "x-ms-request-id": [ "457b76b9-cb4e-4646-b579-0121115e45c0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125414Z:4be17bc2-dcc9-4a6b-b487-67d536fbec7e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:54:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:35:01.0993059Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Running\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15+66": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407", "408" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "ec8f968c-b910-4e76-90f6-50711c389654" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "2a7c050c-c2ff-4832-984d-c8bfe50e65c4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125444Z:2a7c050c-c2ff-4832-984d-c8bfe50e65c4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:54:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "465" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"name\":\"80e6792a-47b9-4ba7-8b09-f0310f2558a9\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:35:00.474302Z\",\"endTime\":\"2020-05-07T12:54:37.5576395Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterDelete\",\"RootActivityId\":\"21e53cb9-3d19-4fdb-be77-6b1210552fed\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Remove-AzKustoCluster+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15\u0026operationResultResponseType=Location+67": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/80e6792a-47b9-4ba7-8b09-f0310f2558a9?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407", "408", "409" ], - "x-ms-client-request-id": [ "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa", "d695cf97-2686-4cc4-a6f7-3e009bdd01aa" ], - "CommandName": [ "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster", "Remove-AzKustoCluster" ], - "FullCommandName": [ "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete", "Remove-AzKustoCluster_Delete" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "660a4da5-d7a1-4ff2-9298-52fb44a3135e" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-correlation-request-id": [ "e9a10881-6769-43c9-80ef-bcef193dcdc6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125445Z:e9a10881-6769-43c9-80ef-bcef193dcdc6" ], + "x-ms-correlation-request-id": [ "a21929ab-aea0-456b-b869-ecdbc12e4a92" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004415Z:a21929ab-aea0-456b-b869-ecdbc12e4a92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:54:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json b/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json index f180cc3f0744..6847f4656a6d 100644 --- a/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json +++ b/src/Kusto/test/Remove-AzKustoClusterLanguageExtension.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/removeLanguageExtensions?api-version=2020-02-15+1": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/removeLanguageExtensions?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/removeLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/removeLanguageExtensions?api-version=2020-06-14", "Content": "{\r\n \"value\": [\r\n {\r\n \"languageExtensionName\": \"R\"\r\n }\r\n ]\r\n}", "Headers": { }, @@ -16,17 +16,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ab96a079-0078-4a5e-8e4e-17ae99dd687d?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "18fd7ab7-9851-48a9-96ff-702331fc8791" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ab96a079-0078-4a5e-8e4e-17ae99dd687d?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "eaa5dc2c-4ea1-425b-a98f-5961bde9b283" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "89c477bd-4166-429e-9cb4-e11d2b5f408c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125445Z:89c477bd-4166-429e-9cb4-e11d2b5f408c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "62cb9fee-79f6-449a-a664-8f030c9aae34" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004416Z:62cb9fee-79f6-449a-a664-8f030c9aae34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:54:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -35,14 +35,14 @@ "Content": null } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ab96a079-0078-4a5e-8e4e-17ae99dd687d?api-version=2020-02-15+2": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ab96a079-0078-4a5e-8e4e-17ae99dd687d?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "410", "411" ], - "x-ms-client-request-id": [ "2b54e857-6dc1-4205-ab1e-377f39c55f07", "2b54e857-6dc1-4205-ab1e-377f39c55f07" ], + "x-ms-client-request-id": [ "4fe76127-3564-4715-84a9-38bd43047c05", "4fe76127-3564-4715-84a9-38bd43047c05" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -58,32 +58,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "f2a2283d-485e-49a5-93a3-117de4b55dd7" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "bbad3b27-aa78-46eb-8a83-6451823f0e93" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "efd8a0e9-e8bf-4612-9653-24f45e0e85ee" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125515Z:efd8a0e9-e8bf-4612-9653-24f45e0e85ee" ], + "x-ms-correlation-request-id": [ "4226fc81-8c50-47ba-8e6b-91316eb81e9d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004446Z:4226fc81-8c50-47ba-8e6b-91316eb81e9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ab96a079-0078-4a5e-8e4e-17ae99dd687d\",\"name\":\"ab96a079-0078-4a5e-8e4e-17ae99dd687d\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:54:45.6983364Z\",\"endTime\":\"2020-05-07T12:54:48.7295864Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"ace355b0-01fe-4aa6-8a67-3e227c95e914\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/55f8d844-7ff6-4485-a6ff-b286f9882e1a\",\"name\":\"55f8d844-7ff6-4485-a6ff-b286f9882e1a\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:44:16.2758443Z\",\"endTime\":\"2020-08-03T00:44:21.4794015Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"07687298-825e-44a1-86c8-ddd5112ba8b0\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ab96a079-0078-4a5e-8e4e-17ae99dd687d?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ab96a079-0078-4a5e-8e4e-17ae99dd687d?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/55f8d844-7ff6-4485-a6ff-b286f9882e1a?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { "x-ms-unique-id": [ "410", "411", "412" ], - "x-ms-client-request-id": [ "2b54e857-6dc1-4205-ab1e-377f39c55f07", "2b54e857-6dc1-4205-ab1e-377f39c55f07", "2b54e857-6dc1-4205-ab1e-377f39c55f07" ], + "x-ms-client-request-id": [ "4fe76127-3564-4715-84a9-38bd43047c05", "4fe76127-3564-4715-84a9-38bd43047c05", "4fe76127-3564-4715-84a9-38bd43047c05" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -98,15 +98,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fea87ca8-cb2e-4116-abec-fc4eed037043" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "e7ad20cb-1c6f-4294-9922-46a1ae5ffb34" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-correlation-request-id": [ "25aaee72-f2f2-4e5b-8171-babc3387e8f5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125516Z:25aaee72-f2f2-4e5b-8171-babc3387e8f5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-correlation-request-id": [ "4de51b3e-c2e3-4a2a-8716-ac6870019675" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004446Z:4de51b3e-c2e3-4a2a-8716-ac6870019675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -115,14 +115,14 @@ "Content": null } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+1": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "062cb0ee-6ba3-494e-9673-f4dc6ff9f5e1" ], + "x-ms-client-request-id": [ "99dbc15d-1015-4786-b6ad-6876b491c843" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -139,28 +139,28 @@ "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "da600fa6-4340-4182-ba41-61376ab42ed3" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], + "x-ms-request-id": [ "d58ac893-8832-44d8-af3c-bfcfbf6bde8d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c7ef771e-7144-4184-a9b6-d148b62a78d4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125516Z:c7ef771e-7144-4184-a9b6-d148b62a78d4" ], + "x-ms-correlation-request-id": [ "7a2ccecb-c50b-479b-b274-69b3d7c154c6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004447Z:7a2ccecb-c50b-479b-b274-69b3d7c154c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "797" ], + "Content-Length": [ "828" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"}]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[{\"languageExtensionName\":\"PYTHON\"}]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/removeLanguageExtensions?api-version=2020-02-15+2": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/removeLanguageExtensions?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/removeLanguageExtensions?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/removeLanguageExtensions?api-version=2020-06-14", "Content": "{\r\n \"value\": [\r\n {\r\n \"languageExtensionName\": \"PYTHON\"\r\n }\r\n ]\r\n}", "Headers": { }, @@ -174,17 +174,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "8640a0c6-e013-4e68-a25a-ee566b0b18e0" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "4972ffb6-46f4-4034-a683-834aa7cf4be8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "8ba309d2-517e-46ed-824c-cc22add4134a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125516Z:8ba309d2-517e-46ed-824c-cc22add4134a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "fcb88bfd-3ad5-4720-ac7c-35f8be39313e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004447Z:fcb88bfd-3ad5-4720-ac7c-35f8be39313e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:44:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -193,14 +193,14 @@ "Content": null } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15+3": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "414", "415" ], - "x-ms-client-request-id": [ "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658" ], + "x-ms-client-request-id": [ "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -216,32 +216,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "91587571-2a3d-4676-9027-a0e1c62c9d17" ], - "x-ms-request-id": [ "3a39e96f-69d2-4e01-833f-bc65c4ff52ec" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "ba7e4358-37b6-4c01-93ce-8bfa0d117b00" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125547Z:91587571-2a3d-4676-9027-a0e1c62c9d17" ], + "x-ms-correlation-request-id": [ "c6b89bd6-7f02-4dc0-9057-50104852fae7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004517Z:c6b89bd6-7f02-4dc0-9057-50104852fae7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:55:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:45:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"name\":\"ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:55:16.7376196Z\",\"endTime\":\"2020-05-07T12:55:18.1907336Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"be448330-63ff-42ae-9d03-0840cde37fa9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15+4": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "414", "415", "416" ], - "x-ms-client-request-id": [ "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658" ], + "x-ms-client-request-id": [ "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -257,32 +257,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "be9e64a0-87e4-486d-b30a-b46476894a9d" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "d7f15482-8a5f-4dae-9c05-39cbdfff1d85" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8436fbeb-ffb7-478c-a52b-9e9aa37d1cc9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125617Z:8436fbeb-ffb7-478c-a52b-9e9aa37d1cc9" ], + "x-ms-correlation-request-id": [ "9349ce9a-08a3-412c-b681-c05b8cfad888" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004547Z:9349ce9a-08a3-412c-b681-c05b8cfad888" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:56:17 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:45:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"name\":\"ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:55:16.7376196Z\",\"endTime\":\"2020-05-07T12:55:18.1907336Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"be448330-63ff-42ae-9d03-0840cde37fa9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15+5": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "414", "415", "416", "417" ], - "x-ms-client-request-id": [ "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658" ], + "x-ms-client-request-id": [ "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -298,32 +298,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "46ca2b8d-47c2-4164-8908-2cf7a5893665" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "e09e558b-a668-4930-a73a-57265aea6e4c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d7c5edde-89ed-4a47-809d-afd0f25eb0ac" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125647Z:d7c5edde-89ed-4a47-809d-afd0f25eb0ac" ], + "x-ms-correlation-request-id": [ "a9351316-e2ee-4720-b7d3-0105147be6c4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004618Z:a9351316-e2ee-4720-b7d3-0105147be6c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:56:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:46:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"name\":\"ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:55:16.7376196Z\",\"endTime\":\"2020-05-07T12:55:18.1907336Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"be448330-63ff-42ae-9d03-0840cde37fa9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15+6": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "414", "415", "416", "417", "418" ], - "x-ms-client-request-id": [ "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658" ], + "x-ms-client-request-id": [ "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -339,32 +339,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "d8628080-eb51-4a8c-9699-b0478091e4d2" ], - "x-ms-request-id": [ "14d0c3ce-e39f-4788-8a93-2d4b7980c1ee" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "5b2bbfd8-9a57-4f29-84d2-c89cc1fa2a9d" ], + "x-ms-request-id": [ "f962103b-bd26-48b0-a26f-4e3d94cb20ef" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125718Z:d8628080-eb51-4a8c-9699-b0478091e4d2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004648Z:5b2bbfd8-9a57-4f29-84d2-c89cc1fa2a9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:57:17 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:46:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"name\":\"ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:55:16.7376196Z\",\"endTime\":\"2020-05-07T12:55:18.1907336Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"be448330-63ff-42ae-9d03-0840cde37fa9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15+7": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419" ], - "x-ms-client-request-id": [ "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658" ], + "x-ms-client-request-id": [ "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -380,32 +380,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "42e6a1d6-89db-4810-9fc0-5744e99d43c7" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "f6e5c388-cbad-4760-89b6-0f08a0943369" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "03d77ee7-2fec-4ce7-aef5-db0182f5592f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125748Z:03d77ee7-2fec-4ce7-aef5-db0182f5592f" ], + "x-ms-correlation-request-id": [ "a8e875e2-ebc9-462f-bbcc-696d7151fd30" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004719Z:a8e875e2-ebc9-462f-bbcc-696d7151fd30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:57:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:47:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"name\":\"ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:55:16.7376196Z\",\"endTime\":\"2020-05-07T12:55:18.1907336Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"be448330-63ff-42ae-9d03-0840cde37fa9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15+8": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419", "420" ], - "x-ms-client-request-id": [ "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658" ], + "x-ms-client-request-id": [ "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -421,32 +421,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "141bf08d-ada9-41f3-9952-da2a1cf6c077" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "626a4c91-b47a-4179-855a-d01bdf10da78" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "55c727b6-5961-47b3-a580-b4d0affe96c8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125818Z:55c727b6-5961-47b3-a580-b4d0affe96c8" ], + "x-ms-correlation-request-id": [ "0e568e90-927c-4b01-83d4-e21cd610cc1c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004749Z:0e568e90-927c-4b01-83d4-e21cd610cc1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:58:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:47:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"name\":\"ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T12:55:16.7376196Z\",\"endTime\":\"2020-05-07T12:55:18.1907336Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"be448330-63ff-42ae-9d03-0840cde37fa9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:44:50.4863226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15+9": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419", "420", "421" ], - "x-ms-client-request-id": [ "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658" ], + "x-ms-client-request-id": [ "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -462,32 +462,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "d41f17e5-a588-4c58-b765-77bf03c96850" ], - "x-ms-request-id": [ "4d60419b-b66a-4fed-a87a-615be5996486" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "3e61e190-5113-4d8f-931e-a7960592c296" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125849Z:d41f17e5-a588-4c58-b765-77bf03c96850" ], + "x-ms-correlation-request-id": [ "22f1fd1d-0058-49ed-9e77-fdfa672478bb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004819Z:22f1fd1d-0058-49ed-9e77-fdfa672478bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:58:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:48:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"name\":\"ce050e2a-b930-40dc-be05-7ecf0e690dd4\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:55:16.7376196Z\",\"endTime\":\"2020-05-07T12:58:40.8600379Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"be448330-63ff-42ae-9d03-0840cde37fa9\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e8f9858a-a992-46b0-9985-6be3e082e31b\",\"name\":\"e8f9858a-a992-46b0-9985-6be3e082e31b\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:44:47.4590405Z\",\"endTime\":\"2020-08-03T00:48:11.1534208Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"9eaf42c6-77b8-4c84-8d50-02a56596a878\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15\u0026operationResultResponseType=Location+10": { + "Remove-AzKustoClusterLanguageExtension+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14\u0026operationResultResponseType=Location+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ce050e2a-b930-40dc-be05-7ecf0e690dd4?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e8f9858a-a992-46b0-9985-6be3e082e31b?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { "x-ms-unique-id": [ "414", "415", "416", "417", "418", "419", "420", "421", "422" ], - "x-ms-client-request-id": [ "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658", "7794eabd-e0c4-4ee4-85a7-7deeb4d85658" ], + "x-ms-client-request-id": [ "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35", "f78d9934-2e41-4bc2-a2ff-dda54e4bee35" ], "CommandName": [ "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension", "Remove-AzKustoClusterLanguageExtension" ], "FullCommandName": [ "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded", "Remove-AzKustoClusterLanguageExtension_RemoveViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -502,15 +502,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c887bcfc-f73f-4a12-b38f-010fb1775702" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "dfd630ca-c864-48d3-aa2c-94a3dc628383" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-correlation-request-id": [ "4eb75f9c-594a-4589-bac6-9e763dbf04f5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125849Z:4eb75f9c-594a-4589-bac6-9e763dbf04f5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-correlation-request-id": [ "cb0ac1da-fe14-4216-88a4-671b6ec55801" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004819Z:cb0ac1da-fe14-4216-88a4-671b6ec55801" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:58:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:48:19 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json b/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json index fab51d81eea5..0bedcea028bf 100644 --- a/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json +++ b/src/Kusto/test/Remove-AzKustoClusterPrincipalAssignment.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": "{\r\n \"properties\": {\r\n \"principalId\": \"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\r\n \"principalType\": \"App\",\r\n \"role\": \"AllDatabasesViewer\"\r\n }\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "120dc782-0599-44ee-bcbb-5f89edd418fe" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7382df4c-436d-46b7-9be9-b756340bfd62?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "61e11ce9-b6c2-40b6-88fc-4cfa07c0cbe6" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6e38876a-876b-4f47-82e8-0b33af6c5e46?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "74ea327a-aa1c-41b8-9df6-e5bf38da3626" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125852Z:74ea327a-aa1c-41b8-9df6-e5bf38da3626" ], + "x-ms-correlation-request-id": [ "d0edc4f7-93eb-4b23-bcc1-690f28634aaf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004822Z:d0edc4f7-93eb-4b23-bcc1-690f28634aaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:58:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:48:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "452" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"AllDatabasesViewer\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"AllDatabasesViewer\",\"provisioningState\":\"Creating\"}}" } }, - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7382df4c-436d-46b7-9be9-b756340bfd62?api-version=2020-02-15+2": { + "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6e38876a-876b-4f47-82e8-0b33af6c5e46?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7382df4c-436d-46b7-9be9-b756340bfd62?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6e38876a-876b-4f47-82e8-0b33af6c5e46?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "423", "424" ], - "x-ms-client-request-id": [ "dcbcdd67-4b2d-4055-8fa2-8d690d2ba112", "dcbcdd67-4b2d-4055-8fa2-8d690d2ba112" ], + "x-ms-client-request-id": [ "f720decb-d3ef-49ae-92f4-758494d0baa9", "f720decb-d3ef-49ae-92f4-758494d0baa9" ], "CommandName": [ "New-AzKustoClusterPrincipalAssignment", "New-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "New-AzKustoClusterPrincipalAssignment_CreateExpanded", "New-AzKustoClusterPrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "50498dca-6fce-46e1-a695-3308d3e04a25" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "ecde5864-f2d0-4354-9537-9820d8613227" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a0a377e1-f7f8-40b0-99c8-72fe9ba0e055" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125923Z:a0a377e1-f7f8-40b0-99c8-72fe9ba0e055" ], + "x-ms-correlation-request-id": [ "ac76570d-8021-44be-a2d6-b2fa6b410c0b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004852Z:ac76570d-8021-44be-a2d6-b2fa6b410c0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:48:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "483" ], + "Content-Length": [ "512" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7382df4c-436d-46b7-9be9-b756340bfd62\",\"name\":\"7382df4c-436d-46b7-9be9-b756340bfd62\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:58:52.7043377Z\",\"endTime\":\"2020-05-07T12:58:55.4855562Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"cb0f9e7e-c03d-4df8-aacf-9a20c946b49e\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6e38876a-876b-4f47-82e8-0b33af6c5e46\",\"name\":\"6e38876a-876b-4f47-82e8-0b33af6c5e46\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:48:22.3676076Z\",\"endTime\":\"2020-08-03T00:48:24.5395848Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsAdd\",\"RootActivityId\":\"929e64d0-b217-4159-82c3-f80ec125742a\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+3": { + "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "423", "424", "425" ], - "x-ms-client-request-id": [ "dcbcdd67-4b2d-4055-8fa2-8d690d2ba112", "dcbcdd67-4b2d-4055-8fa2-8d690d2ba112", "dcbcdd67-4b2d-4055-8fa2-8d690d2ba112" ], + "x-ms-client-request-id": [ "f720decb-d3ef-49ae-92f4-758494d0baa9", "f720decb-d3ef-49ae-92f4-758494d0baa9", "f720decb-d3ef-49ae-92f4-758494d0baa9" ], "CommandName": [ "New-AzKustoClusterPrincipalAssignment", "New-AzKustoClusterPrincipalAssignment", "New-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "New-AzKustoClusterPrincipalAssignment_CreateExpanded", "New-AzKustoClusterPrincipalAssignment_CreateExpanded", "New-AzKustoClusterPrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -102,31 +102,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "fb0a0be3-48f8-44e5-b628-caa1137c333b" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "efec9c35-271e-4537-850a-89224636914e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "42eb624d-de9f-4011-9600-28a097df21a9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125923Z:42eb624d-de9f-4011-9600-28a097df21a9" ], + "x-ms-correlation-request-id": [ "dd588fbc-5cc5-47ae-9511-cae636de5595" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004853Z:dd588fbc-5cc5-47ae-9511-cae636de5595" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:48:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "570" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"AllDatabasesViewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+4": { + "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "426" ], - "x-ms-client-request-id": [ "ebf99125-78c1-419e-bdd5-29bf48186abf" ], + "x-ms-client-request-id": [ "13f3bdfe-1a79-414d-a62a-74f4a672a5cf" ], "CommandName": [ "Remove-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoClusterPrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,17 +141,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ad1e0d9c-9326-443b-b0cf-8c199b55f691?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ad1e0d9c-9326-443b-b0cf-8c199b55f691?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14988" ], - "x-ms-request-id": [ "ad74b648-0ea9-4d22-9de7-373798a23d02" ], - "x-ms-correlation-request-id": [ "ad74b648-0ea9-4d22-9de7-373798a23d02" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125923Z:ad74b648-0ea9-4d22-9de7-373798a23d02" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], + "x-ms-request-id": [ "7fc72e42-2428-4ee1-9696-10fdaea8d941" ], + "x-ms-correlation-request-id": [ "7fc72e42-2428-4ee1-9696-10fdaea8d941" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004853Z:7fc72e42-2428-4ee1-9696-10fdaea8d941" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:48:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -160,14 +160,14 @@ "Content": null } }, - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ad1e0d9c-9326-443b-b0cf-8c199b55f691?api-version=2020-02-15+5": { + "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ad1e0d9c-9326-443b-b0cf-8c199b55f691?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "426", "427" ], - "x-ms-client-request-id": [ "ebf99125-78c1-419e-bdd5-29bf48186abf", "ebf99125-78c1-419e-bdd5-29bf48186abf" ], + "x-ms-client-request-id": [ "13f3bdfe-1a79-414d-a62a-74f4a672a5cf", "13f3bdfe-1a79-414d-a62a-74f4a672a5cf" ], "CommandName": [ "Remove-AzKustoClusterPrincipalAssignment", "Remove-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoClusterPrincipalAssignment_Delete", "Remove-AzKustoClusterPrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -183,32 +183,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "6be0f053-a8ae-4ccb-9417-d864ba4fdb1d" ], - "x-ms-request-id": [ "37e5ef26-8f91-4a7d-9f5c-604923d53bfe" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "59d26781-e856-4cbe-953a-ba49104bf633" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125954Z:6be0f053-a8ae-4ccb-9417-d864ba4fdb1d" ], + "x-ms-correlation-request-id": [ "4e5f839d-e612-45c4-b5bc-1961bded5a47" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004923Z:4e5f839d-e612-45c4-b5bc-1961bded5a47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:54 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:49:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "483" ], + "Content-Length": [ "513" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ad1e0d9c-9326-443b-b0cf-8c199b55f691\",\"name\":\"ad1e0d9c-9326-443b-b0cf-8c199b55f691\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:59:23.699764Z\",\"endTime\":\"2020-05-07T12:59:25.4809953Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"1a46613b-92fc-4fda-b848-7a7ad36cf794\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65\",\"name\":\"bc119d3f-6e1d-4b67-8b90-ea56228ffb65\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:48:53.5204371Z\",\"endTime\":\"2020-08-03T00:48:56.0519014Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServicePrincipalAssignmentsDrop\",\"RootActivityId\":\"136845d6-5862-4616-a22f-74c8713da161\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ad1e0d9c-9326-443b-b0cf-8c199b55f691?api-version=2020-02-15\u0026operationResultResponseType=Location+6": { + "Remove-AzKustoClusterPrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65?api-version=2020-06-14\u0026operationResultResponseType=Location+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ad1e0d9c-9326-443b-b0cf-8c199b55f691?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/bc119d3f-6e1d-4b67-8b90-ea56228ffb65?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { "x-ms-unique-id": [ "426", "427", "428" ], - "x-ms-client-request-id": [ "ebf99125-78c1-419e-bdd5-29bf48186abf", "ebf99125-78c1-419e-bdd5-29bf48186abf", "ebf99125-78c1-419e-bdd5-29bf48186abf" ], + "x-ms-client-request-id": [ "13f3bdfe-1a79-414d-a62a-74f4a672a5cf", "13f3bdfe-1a79-414d-a62a-74f4a672a5cf", "13f3bdfe-1a79-414d-a62a-74f4a672a5cf" ], "CommandName": [ "Remove-AzKustoClusterPrincipalAssignment", "Remove-AzKustoClusterPrincipalAssignment", "Remove-AzKustoClusterPrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoClusterPrincipalAssignment_Delete", "Remove-AzKustoClusterPrincipalAssignment_Delete", "Remove-AzKustoClusterPrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,15 +223,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "45b238c7-742a-443a-9790-e30af76247b9" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "83f6e2c8-8ff1-43cb-9ef5-78a7d9157e92" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], - "x-ms-correlation-request-id": [ "78761ee9-1780-452d-9be3-abd0d635775a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125954Z:78761ee9-1780-452d-9be3-abd0d635775a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-correlation-request-id": [ "d95168a5-98f5-4f70-902f-0511d19c6106" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004924Z:d95168a5-98f5-4f70-902f-0511d19c6106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:54 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:49:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json b/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json index c5e82c80c4b9..00de68cd9418 100644 --- a/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/Remove-AzKustoDataConnection.Recording.json @@ -1,12 +1,12 @@ { - "Remove-AzKustoDataConnection+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+1": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "444" ], - "x-ms-client-request-id": [ "e4f0ddee-e999-4bbf-8c4e-5b0b4234beb2" ], + "x-ms-client-request-id": [ "e97309bd-05c2-45de-92af-51e894464c81" ], "CommandName": [ "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,17 +21,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f00c02ba-47dc-490f-993c-2fd749634bec?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f00c02ba-47dc-490f-993c-2fd749634bec?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], - "x-ms-request-id": [ "0e94d68b-46a9-4384-a971-095a70fd216e" ], - "x-ms-correlation-request-id": [ "0e94d68b-46a9-4384-a971-095a70fd216e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130201Z:0e94d68b-46a9-4384-a971-095a70fd216e" ], + "x-ms-request-id": [ "a110894f-f965-4a2d-885e-3e9830a44d0e" ], + "x-ms-correlation-request-id": [ "a110894f-f965-4a2d-885e-3e9830a44d0e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005131Z:a110894f-f965-4a2d-885e-3e9830a44d0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:51:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -40,14 +40,14 @@ "Content": null } }, - "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f00c02ba-47dc-490f-993c-2fd749634bec?api-version=2020-02-15+2": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f00c02ba-47dc-490f-993c-2fd749634bec?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "444", "445" ], - "x-ms-client-request-id": [ "e4f0ddee-e999-4bbf-8c4e-5b0b4234beb2", "e4f0ddee-e999-4bbf-8c4e-5b0b4234beb2" ], + "x-ms-client-request-id": [ "e97309bd-05c2-45de-92af-51e894464c81", "e97309bd-05c2-45de-92af-51e894464c81" ], "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -63,32 +63,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "5cff7c3f-4308-47f0-84d2-a885e0792469" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "899abd8a-f956-4568-81e0-b4ac6000678d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "80dfcf0e-02fc-473f-a698-1c9239abb0c4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130232Z:80dfcf0e-02fc-473f-a698-1c9239abb0c4" ], + "x-ms-correlation-request-id": [ "a7b5026d-c5d7-499a-8f30-1bd2a250aebf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005201Z:a7b5026d-c5d7-499a-8f30-1bd2a250aebf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:52:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f00c02ba-47dc-490f-993c-2fd749634bec\",\"name\":\"f00c02ba-47dc-490f-993c-2fd749634bec\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:02:01.9018468Z\",\"endTime\":\"2020-05-07T13:02:02.8087896Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"4ed857e5-7be8-46a0-b4ce-ae9c231b0bd3\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/cd111729-9837-424f-b549-290e5e14b438\",\"name\":\"cd111729-9837-424f-b549-290e5e14b438\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:51:31.5937439Z\",\"endTime\":\"2020-08-03T00:51:32.5625918Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceDataObtainerDrop\",\"RootActivityId\":\"5248fafd-d11e-4476-bbda-bc9a1e75ea72\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f00c02ba-47dc-490f-993c-2fd749634bec?api-version=2020-02-15\u0026operationResultResponseType=Location+3": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14\u0026operationResultResponseType=Location+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f00c02ba-47dc-490f-993c-2fd749634bec?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/cd111729-9837-424f-b549-290e5e14b438?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { "x-ms-unique-id": [ "444", "445", "446" ], - "x-ms-client-request-id": [ "e4f0ddee-e999-4bbf-8c4e-5b0b4234beb2", "e4f0ddee-e999-4bbf-8c4e-5b0b4234beb2", "e4f0ddee-e999-4bbf-8c4e-5b0b4234beb2" ], + "x-ms-client-request-id": [ "e97309bd-05c2-45de-92af-51e894464c81", "e97309bd-05c2-45de-92af-51e894464c81", "e97309bd-05c2-45de-92af-51e894464c81" ], "CommandName": [ "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection", "Remove-AzKustoDataConnection" ], "FullCommandName": [ "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete", "Remove-AzKustoDataConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -103,15 +103,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "03a4f5c6-fc05-4ac0-98c3-1a400cb61943" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "87fc5818-a425-4fb5-9c47-5a4bf8a21b6e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-correlation-request-id": [ "95bd82e0-8023-4b7b-b8d8-23dbb5784ff5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130232Z:95bd82e0-8023-4b7b-b8d8-23dbb5784ff5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-correlation-request-id": [ "4a6a9ae0-e531-42d9-8a5b-9d6772cf753f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005202Z:4a6a9ae0-e531-42d9-8a5b-9d6772cf753f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:52:01 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -120,16 +120,16 @@ "Content": null } }, - "Remove-AzKustoDataConnection+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+4": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "429" ] + "Content-Length": [ "333" ] } }, "Response": { @@ -138,33 +138,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "88163d8b-9b32-415c-b8dd-85f3156855cb" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/423c6fcb-8db7-4329-8348-146f426e7ebd?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "3d46eb10-2fde-434a-81c7-e2c4593c29bf" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d007877c-5bc8-4f3c-833d-69ead6ab3328?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], - "x-ms-correlation-request-id": [ "bba08fe6-9dc5-469f-b22f-4ed8856ff23b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130233Z:bba08fe6-9dc5-469f-b22f-4ed8856ff23b" ], + "x-ms-correlation-request-id": [ "2576feed-1ba1-4ccf-9935-ce5289c4c676" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005203Z:2576feed-1ba1-4ccf-9935-ce5289c4c676" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:52:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "755" ], + "Content-Length": [ "680" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"mappingRuleName\":\"EventsMapping\",\"tableName\":\"Events\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"provisioningState\":\"Creating\"}}" } }, - "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/423c6fcb-8db7-4329-8348-146f426e7ebd?api-version=2020-02-15+5": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d007877c-5bc8-4f3c-833d-69ead6ab3328?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/423c6fcb-8db7-4329-8348-146f426e7ebd?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d007877c-5bc8-4f3c-833d-69ead6ab3328?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "447", "448" ], - "x-ms-client-request-id": [ "bd7aa015-9a97-46a7-b77c-d3a7f929a7b4", "bd7aa015-9a97-46a7-b77c-d3a7f929a7b4" ], + "x-ms-client-request-id": [ "f2ff3709-c637-423d-ab96-eb034aef014e", "f2ff3709-c637-423d-ab96-eb034aef014e" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -180,32 +180,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ae987572-fbe5-4f2f-a0a6-c8459d54dcfa" ], - "x-ms-request-id": [ "5444d8c0-1fad-4d9b-b99d-2dbce3397ab8" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "ecc81881-bfde-4732-85ff-1fd8632e9682" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130303Z:ae987572-fbe5-4f2f-a0a6-c8459d54dcfa" ], + "x-ms-correlation-request-id": [ "6791ceab-c9d3-44bb-98e9-729f1918ed33" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005233Z:6791ceab-c9d3-44bb-98e9-729f1918ed33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:03:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:52:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/423c6fcb-8db7-4329-8348-146f426e7ebd\",\"name\":\"423c6fcb-8db7-4329-8348-146f426e7ebd\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:02:32.9824255Z\",\"endTime\":\"2020-05-07T13:02:36.9085522Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"9f2c9e03-69f1-4caa-a6cd-ee2661414f16\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d007877c-5bc8-4f3c-833d-69ead6ab3328\",\"name\":\"d007877c-5bc8-4f3c-833d-69ead6ab3328\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:52:03.1534208Z\",\"endTime\":\"2020-08-03T00:52:07.4992841Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+6": { + "Remove-AzKustoDataConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "447", "448", "449" ], - "x-ms-client-request-id": [ "bd7aa015-9a97-46a7-b77c-d3a7f929a7b4", "bd7aa015-9a97-46a7-b77c-d3a7f929a7b4", "bd7aa015-9a97-46a7-b77c-d3a7f929a7b4" ], + "x-ms-client-request-id": [ "f2ff3709-c637-423d-ab96-eb034aef014e", "f2ff3709-c637-423d-ab96-eb034aef014e", "f2ff3709-c637-423d-ab96-eb034aef014e" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection", "Az.Kusto.internal\\New-AzKustoDataConnection" ], "FullCommandName": [ "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create", "New-AzKustoDataConnection_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,21 +223,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "1d2d91d7-4e92-4ae5-9a73-f3381e5a1c37" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "54911dba-b049-42bf-8ef2-5ebc2dc8d3f0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ab7ed1a5-ac0f-4128-95c4-30e369b56125" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130304Z:ab7ed1a5-ac0f-4128-95c4-30e369b56125" ], + "x-ms-correlation-request-id": [ "fc08a06c-556a-48a0-86e7-0f51ef6dde92" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005233Z:fc08a06c-556a-48a0-86e7-0f51ef6dde92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:03:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:52:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "793" ], + "Content-Length": [ "770" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":\"\",\"mappingRuleName\":\"\",\"dataFormat\":\"\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Remove-AzKustoDataConnection.Tests.ps1 b/src/Kusto/test/Remove-AzKustoDataConnection.Tests.ps1 index d440f3e9c5ea..93c4c16e5569 100644 --- a/src/Kusto/test/Remove-AzKustoDataConnection.Tests.ps1 +++ b/src/Kusto/test/Remove-AzKustoDataConnection.Tests.ps1 @@ -24,12 +24,9 @@ Describe 'Remove-AzKustoDataConnection' { $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" Remove-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName - { New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $tableName -MappingRuleName $tableMappingName } | Should -Not -Throw + { New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" } | Should -Not -Throw } } diff --git a/src/Kusto/test/Remove-AzKustoDatabase.Recording.json b/src/Kusto/test/Remove-AzKustoDatabase.Recording.json index 0f4c9af5b839..c8bb10b7080e 100644 --- a/src/Kusto/test/Remove-AzKustoDatabase.Recording.json +++ b/src/Kusto/test/Remove-AzKustoDatabase.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzKustoDatabase+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+1": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\"\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "8096066c-5327-431e-8674-0f9477784f70" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/78660149-9856-4299-9a5e-728a65f5bace?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "d7d09824-6a6e-43b9-8dde-ac433f2b3ce4" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f0006420-84e2-473a-874f-6982a68136a2?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], - "x-ms-correlation-request-id": [ "9998a756-8f23-4629-9a32-a83aee7f95d4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T125955Z:9998a756-8f23-4629-9a32-a83aee7f95d4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "195" ], + "x-ms-correlation-request-id": [ "b396d522-e0ee-41da-a1d3-4b22d2dd4dbd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004924Z:b396d522-e0ee-41da-a1d3-4b22d2dd4dbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 12:59:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:49:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf\",\"name\":\"testclusterpb8oay/testdatabasei6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho\",\"name\":\"testclusterlbfexs/testdatabasesu8yho\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"properties\":{\"provisioningState\":\"Creating\"}}" } }, - "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/78660149-9856-4299-9a5e-728a65f5bace?api-version=2020-02-15+2": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f0006420-84e2-473a-874f-6982a68136a2?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/78660149-9856-4299-9a5e-728a65f5bace?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f0006420-84e2-473a-874f-6982a68136a2?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "429", "430" ], - "x-ms-client-request-id": [ "1a10740c-f32f-4385-a6ed-7106102418f7", "1a10740c-f32f-4385-a6ed-7106102418f7" ], + "x-ms-client-request-id": [ "3d048442-773c-40f5-b297-a230a4ca0df6", "3d048442-773c-40f5-b297-a230a4ca0df6" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "d925b855-c81f-4c0d-9e84-280fb4f422f0" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], + "x-ms-request-id": [ "b4f1f3f3-66a4-4abd-ab05-faded48893c9" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fe6800ec-0df1-47d3-aa7e-ee28dc35b2ba" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130025Z:fe6800ec-0df1-47d3-aa7e-ee28dc35b2ba" ], + "x-ms-correlation-request-id": [ "c7b4b58e-1316-4d1c-8d69-49ed437af735" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004955Z:c7b4b58e-1316-4d1c-8d69-49ed437af735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:49:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/78660149-9856-4299-9a5e-728a65f5bace\",\"name\":\"78660149-9856-4299-9a5e-728a65f5bace\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T12:59:55.3677168Z\",\"endTime\":\"2020-05-07T12:59:58.1177107Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"43078e06-d1f1-4a65-abe6-a6d5640e73bd\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f0006420-84e2-473a-874f-6982a68136a2\",\"name\":\"f0006420-84e2-473a-874f-6982a68136a2\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:49:24.8594456Z\",\"endTime\":\"2020-08-03T00:49:26.5002911Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"14f5ebe6-c64c-4379-8833-878ed8a83231\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+3": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "429", "430", "431" ], - "x-ms-client-request-id": [ "1a10740c-f32f-4385-a6ed-7106102418f7", "1a10740c-f32f-4385-a6ed-7106102418f7", "1a10740c-f32f-4385-a6ed-7106102418f7" ], + "x-ms-client-request-id": [ "3d048442-773c-40f5-b297-a230a4ca0df6", "3d048442-773c-40f5-b297-a230a4ca0df6", "3d048442-773c-40f5-b297-a230a4ca0df6" ], "CommandName": [ "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase", "Az.Kusto.internal\\New-AzKustoDatabase" ], "FullCommandName": [ "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create", "New-AzKustoDatabase_Create" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -102,31 +102,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "30d69862-13fc-4034-85af-8fd16ff1cbfd" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "8e2165b8-fa75-49d0-8f4a-2347cd3002fe" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "49eb50a4-ab19-4929-a36b-ce04a7a9473f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130025Z:49eb50a4-ab19-4929-a36b-ce04a7a9473f" ], + "x-ms-correlation-request-id": [ "fca842af-0d15-4405-ad88-d1ba794fb6c8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004955Z:fca842af-0d15-4405-ad88-d1ba794fb6c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:49:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "471" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf\",\"name\":\"testclusterpb8oay/testdatabasei6wlsf\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho\",\"name\":\"testclusterlbfexs/testdatabasesu8yho\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":false,\"softDeletePeriodInDays\":0,\"hotCachePeriodInDays\":0,\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoDatabase+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15+4": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasei6wlsf?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabasesu8yho?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "432" ], - "x-ms-client-request-id": [ "3f86ef0a-a2a5-4898-bb24-c4e0a6c97149" ], + "x-ms-client-request-id": [ "9b592192-c1c3-441f-9c9c-854dada9323f" ], "CommandName": [ "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,17 +141,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/64f42e44-1602-4628-a21a-c9a18aecb7ba?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/64f42e44-1602-4628-a21a-c9a18aecb7ba?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5418be2e-eed1-4b2f-8982-a37a662cca3f?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5418be2e-eed1-4b2f-8982-a37a662cca3f?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], - "x-ms-request-id": [ "81a0a94b-6a76-47fb-93f5-70978cb3e1c6" ], - "x-ms-correlation-request-id": [ "81a0a94b-6a76-47fb-93f5-70978cb3e1c6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130026Z:81a0a94b-6a76-47fb-93f5-70978cb3e1c6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], + "x-ms-request-id": [ "2d96de10-2439-46d1-aa22-27388e5cb058" ], + "x-ms-correlation-request-id": [ "2d96de10-2439-46d1-aa22-27388e5cb058" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T004956Z:2d96de10-2439-46d1-aa22-27388e5cb058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:49:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -160,14 +160,14 @@ "Content": null } }, - "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/64f42e44-1602-4628-a21a-c9a18aecb7ba?api-version=2020-02-15+5": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5418be2e-eed1-4b2f-8982-a37a662cca3f?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/64f42e44-1602-4628-a21a-c9a18aecb7ba?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5418be2e-eed1-4b2f-8982-a37a662cca3f?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "432", "433" ], - "x-ms-client-request-id": [ "3f86ef0a-a2a5-4898-bb24-c4e0a6c97149", "3f86ef0a-a2a5-4898-bb24-c4e0a6c97149" ], + "x-ms-client-request-id": [ "9b592192-c1c3-441f-9c9c-854dada9323f", "9b592192-c1c3-441f-9c9c-854dada9323f" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -183,32 +183,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "82a75242-b4c0-4bf1-81ca-b154eab91a82" ], - "x-ms-request-id": [ "f71397f7-1f68-4cc2-9e46-c524b84ff7af" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "0799a2c6-98a3-403e-9caa-94cb269463e5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130056Z:82a75242-b4c0-4bf1-81ca-b154eab91a82" ], + "x-ms-correlation-request-id": [ "ec1d283d-3f14-4ca4-b78e-615ed7275556" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005026Z:ec1d283d-3f14-4ca4-b78e-615ed7275556" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/64f42e44-1602-4628-a21a-c9a18aecb7ba\",\"name\":\"64f42e44-1602-4628-a21a-c9a18aecb7ba\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:00:26.2588747Z\",\"endTime\":\"2020-05-07T13:00:28.6651383Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"bedcb2c4-272a-4c7d-aa24-33457d13f072\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5418be2e-eed1-4b2f-8982-a37a662cca3f\",\"name\":\"5418be2e-eed1-4b2f-8982-a37a662cca3f\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:49:55.9311373Z\",\"endTime\":\"2020-08-03T00:49:57.9938282Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDelete\",\"RootActivityId\":\"585e3c65-aede-41c8-9f81-8d86518ddd1b\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/64f42e44-1602-4628-a21a-c9a18aecb7ba?api-version=2020-02-15\u0026operationResultResponseType=Location+6": { + "Remove-AzKustoDatabase+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5418be2e-eed1-4b2f-8982-a37a662cca3f?api-version=2020-06-14\u0026operationResultResponseType=Location+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/64f42e44-1602-4628-a21a-c9a18aecb7ba?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5418be2e-eed1-4b2f-8982-a37a662cca3f?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { "x-ms-unique-id": [ "432", "433", "434" ], - "x-ms-client-request-id": [ "3f86ef0a-a2a5-4898-bb24-c4e0a6c97149", "3f86ef0a-a2a5-4898-bb24-c4e0a6c97149", "3f86ef0a-a2a5-4898-bb24-c4e0a6c97149" ], + "x-ms-client-request-id": [ "9b592192-c1c3-441f-9c9c-854dada9323f", "9b592192-c1c3-441f-9c9c-854dada9323f", "9b592192-c1c3-441f-9c9c-854dada9323f" ], "CommandName": [ "Remove-AzKustoDatabase", "Remove-AzKustoDatabase", "Remove-AzKustoDatabase" ], "FullCommandName": [ "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete", "Remove-AzKustoDatabase_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,15 +223,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1d9a330e-1f5a-45aa-a9d2-4bf318c09c31" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "37f64202-010c-4d7a-8130-7bad242b830a" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-correlation-request-id": [ "350fd994-f4c9-4c50-82ff-e73cd2a44bf2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130057Z:350fd994-f4c9-4c50-82ff-e73cd2a44bf2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-correlation-request-id": [ "d28b3fc5-0e84-4874-b915-af6a1629aee7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005026Z:d28b3fc5-0e84-4874-b915-af6a1629aee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:56 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json b/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json index 9d95df5c7869..643dffcf8692 100644 --- a/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json +++ b/src/Kusto/test/Remove-AzKustoDatabasePrincipal.Recording.json @@ -1,12 +1,12 @@ { - "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/listPrincipals?api-version=2020-02-15+1": { + "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/listPrincipals?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/listPrincipals?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/listPrincipals?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "435" ], - "x-ms-client-request-id": [ "40a3c6e7-9fe6-45d9-a307-84ab1e96e878" ], + "x-ms-client-request-id": [ "2bdd699a-d853-4336-a8a5-877143eba8ce" ], "CommandName": [ "Get-AzKustoDatabasePrincipal" ], "FullCommandName": [ "Get-AzKustoDatabasePrincipal_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,33 +23,33 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "5c271d87-3c1e-46f4-82e2-4996b0853650" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "bd86f11d-6eef-4bd6-be3c-ec892c89da98" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "da01e5cb-5534-4f3b-ae96-ce0099a91017" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130057Z:da01e5cb-5534-4f3b-ae96-ce0099a91017" ], + "x-ms-correlation-request-id": [ "22dbd6e8-fa58-4945-b8bb-358a0defa5b4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005027Z:22dbd6e8-fa58-4945-b8bb-358a0defa5b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:56 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "459" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"name\":\"KustoClientsScenarioTest\",\"role\":\"Viewer\",\"type\":\"App\",\"fqn\":\"aadapp=713c3475-5021-4f3b-a650-eaa9a83f25a4;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"\",\"appId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"tenantName\":\"Microsoft\"},{\"name\":\"Royi Shauli\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=c526e8b3-ad30-4963-bdd2-a75a2757e7e3;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"roshauli@microsoft.com\",\"appId\":\"\",\"tenantName\":\"Microsoft\"}]}" + "Content": "{\"value\":[{\"name\":\"Royi Shauli\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=c526e8b3-ad30-4963-bdd2-a75a2757e7e3;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"roshauli@microsoft.com\",\"appId\":\"\",\"tenantName\":\"Microsoft\"},{\"name\":\"KustoClientsScenarioTest\",\"role\":\"Viewer\",\"type\":\"App\",\"fqn\":\"aadapp=713c3475-5021-4f3b-a650-eaa9a83f25a4;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"\",\"appId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"tenantName\":\"Microsoft\"}]}" } }, - "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/removePrincipals?api-version=2020-02-15+2": { + "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/removePrincipals?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/removePrincipals?api-version=2020-02-15", - "Content": "{\r\n \"value\": [\r\n {\r\n \"name\": \"KustoClientsScenarioTest\",\r\n \"type\": \"App\",\r\n \"appId\": \"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\r\n \"email\": \"\",\r\n \"role\": \"Viewer\"\r\n }\r\n ]\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/removePrincipals?api-version=2020-06-14", + "Content": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Royi Shauli\",\r\n \"type\": \"User\",\r\n \"appId\": \"\",\r\n \"email\": \"roshauli@microsoft.com\",\r\n \"role\": \"Admin\"\r\n }\r\n ]\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "202" ] + "Content-Length": [ "175" ] } }, "Response": { @@ -59,33 +59,33 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "dc0226bd-333e-4b9e-ac6a-713ea083e3a7" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "24470b30-088e-4381-bf97-b0aa63d7734b" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5f8fdd83-5e7b-4535-a5cf-648513fed660" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130058Z:5f8fdd83-5e7b-4535-a5cf-648513fed660" ], + "x-ms-correlation-request-id": [ "04e95b3a-c559-4048-9e92-1ce83d4b6e0e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005027Z:04e95b3a-c559-4048-9e92-1ce83d4b6e0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "222" ], + "Content-Length": [ "248" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"name\":\"Royi Shauli\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=c526e8b3-ad30-4963-bdd2-a75a2757e7e3;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"roshauli@microsoft.com\",\"appId\":\"\",\"tenantName\":\"Microsoft\"}]}" + "Content": "{\"value\":[{\"name\":\"KustoClientsScenarioTest\",\"role\":\"Viewer\",\"type\":\"App\",\"fqn\":\"aadapp=713c3475-5021-4f3b-a650-eaa9a83f25a4;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"\",\"appId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"tenantName\":\"Microsoft\"}]}" } }, - "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/addPrincipals?api-version=2020-02-15+3": { + "Remove-AzKustoDatabasePrincipal+[NoContext]+RemoveExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/addPrincipals?api-version=2020-06-14+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/addPrincipals?api-version=2020-02-15", - "Content": "{\r\n \"value\": [\r\n {\r\n \"name\": \"KustoClientsScenarioTest\",\r\n \"type\": \"App\",\r\n \"appId\": \"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\r\n \"email\": \"\",\r\n \"role\": \"Viewer\"\r\n }\r\n ]\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/addPrincipals?api-version=2020-06-14", + "Content": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Royi Shauli\",\r\n \"type\": \"User\",\r\n \"appId\": \"\",\r\n \"email\": \"roshauli@microsoft.com\",\r\n \"role\": \"Admin\"\r\n }\r\n ]\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "202" ] + "Content-Length": [ "175" ] } }, "Response": { @@ -95,21 +95,21 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "150779b0-2917-45b4-8041-e711ecd38757" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "63162916-4add-45c7-aac6-83f3c2300588" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bc7f4394-8d92-4bff-b266-aea2e6bdc5b4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130058Z:bc7f4394-8d92-4bff-b266-aea2e6bdc5b4" ], + "x-ms-correlation-request-id": [ "41e5db61-8d73-4ddf-a653-9cc49a61496b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005028Z:41e5db61-8d73-4ddf-a653-9cc49a61496b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "459" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"name\":\"KustoClientsScenarioTest\",\"role\":\"Viewer\",\"type\":\"App\",\"fqn\":\"aadapp=713c3475-5021-4f3b-a650-eaa9a83f25a4;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"\",\"appId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"tenantName\":\"Microsoft\"},{\"name\":\"Royi Shauli\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=c526e8b3-ad30-4963-bdd2-a75a2757e7e3;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"roshauli@microsoft.com\",\"appId\":\"\",\"tenantName\":\"Microsoft\"}]}" + "Content": "{\"value\":[{\"name\":\"Royi Shauli\",\"role\":\"Admin\",\"type\":\"User\",\"fqn\":\"aaduser=c526e8b3-ad30-4963-bdd2-a75a2757e7e3;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"roshauli@microsoft.com\",\"appId\":\"\",\"tenantName\":\"Microsoft\"},{\"name\":\"KustoClientsScenarioTest\",\"role\":\"Viewer\",\"type\":\"App\",\"fqn\":\"aadapp=713c3475-5021-4f3b-a650-eaa9a83f25a4;72f988bf-86f1-41af-91ab-2d7cd011db47\",\"email\":\"\",\"appId\":\"713c3475-5021-4f3b-a650-eaa9a83f25a4\",\"tenantName\":\"Microsoft\"}]}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Recording.json b/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Recording.json index b27d09dae079..5e6304f8b7fd 100644 --- a/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Recording.json +++ b/src/Kusto/test/Remove-AzKustoDatabasePrincipalAssignment.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": "{\r\n \"properties\": {\r\n \"principalId\": \"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\r\n \"principalType\": \"App\",\r\n \"role\": \"Viewer\"\r\n }\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "0b48b74f-2cac-4564-acad-e56a809dd5b6" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9f335562-504e-4798-8e25-9998a8ef0960?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "ee5b1782-870d-408f-917c-2b618337de85" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d7401f19-8480-4325-ad8f-8ef42695b483?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "9596c6b8-b632-48ff-a2ee-76beac5ba3b6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130059Z:9596c6b8-b632-48ff-a2ee-76beac5ba3b6" ], + "x-ms-correlation-request-id": [ "7b9d3f65-5c48-43b4-a53e-150e920a92d9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005029Z:7b9d3f65-5c48-43b4-a53e-150e920a92d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:00:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"Viewer\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"Viewer\",\"provisioningState\":\"Creating\"}}" } }, - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/9f335562-504e-4798-8e25-9998a8ef0960?api-version=2020-02-15+2": { + "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d7401f19-8480-4325-ad8f-8ef42695b483?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/9f335562-504e-4798-8e25-9998a8ef0960?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d7401f19-8480-4325-ad8f-8ef42695b483?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "438", "439" ], - "x-ms-client-request-id": [ "fc8b3764-ca17-4695-a53e-917186b97f54", "fc8b3764-ca17-4695-a53e-917186b97f54" ], + "x-ms-client-request-id": [ "6dc40018-ddda-4bd3-ae91-f343070041c4", "6dc40018-ddda-4bd3-ae91-f343070041c4" ], "CommandName": [ "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "67a71e8e-93fb-4265-9da1-930cf22901db" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "862e8901-8f08-4c52-b54b-185c55001ee1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "acec2945-cc1c-4514-8926-901eb3123b4d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130129Z:acec2945-cc1c-4514-8926-901eb3123b4d" ], + "x-ms-correlation-request-id": [ "f1efdff8-fde6-4459-b971-1462392260ac" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005059Z:f1efdff8-fde6-4459-b971-1462392260ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:01:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "502" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/9f335562-504e-4798-8e25-9998a8ef0960\",\"name\":\"9f335562-504e-4798-8e25-9998a8ef0960\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:00:59.4424062Z\",\"endTime\":\"2020-05-07T13:00:59.4892998Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"04a08e51-109b-4dcf-900c-4d16a65284c9\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d7401f19-8480-4325-ad8f-8ef42695b483\",\"name\":\"d7401f19-8480-4325-ad8f-8ef42695b483\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:50:29.090262Z\",\"endTime\":\"2020-08-03T00:50:29.1995938Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"16069e8b-c746-42d5-9067-a0abcf3a3825\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+3": { + "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "438", "439", "440" ], - "x-ms-client-request-id": [ "fc8b3764-ca17-4695-a53e-917186b97f54", "fc8b3764-ca17-4695-a53e-917186b97f54", "fc8b3764-ca17-4695-a53e-917186b97f54" ], + "x-ms-client-request-id": [ "6dc40018-ddda-4bd3-ae91-f343070041c4", "6dc40018-ddda-4bd3-ae91-f343070041c4", "6dc40018-ddda-4bd3-ae91-f343070041c4" ], "CommandName": [ "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -102,31 +102,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "5da0084d-53c8-46d5-bcb6-f162d2773070" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "b339ebe2-8fdf-4980-aa08-dc1ab8685a88" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e4bf4517-45ce-4527-893f-1f0a7ea63d71" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130130Z:e4bf4517-45ce-4527-893f-1f0a7ea63d71" ], + "x-ms-correlation-request-id": [ "b5df284c-66c3-4196-bcc0-3a1f3e0d38a5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005059Z:b5df284c-66c3-4196-bcc0-3a1f3e0d38a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:01:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:50:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "616" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" } }, - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+4": { + "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "441" ], - "x-ms-client-request-id": [ "132aee36-9623-457f-a205-01d905bf822f" ], + "x-ms-client-request-id": [ "866f7e34-7092-4085-bbed-19329fc71338" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -141,17 +141,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ac8cf42b-e250-46c5-b4db-9718982a0527?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ac8cf42b-e250-46c5-b4db-9718982a0527?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], - "x-ms-request-id": [ "6d4d4492-cfb3-43c4-afb7-0af2e1b7bfc6" ], - "x-ms-correlation-request-id": [ "6d4d4492-cfb3-43c4-afb7-0af2e1b7bfc6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130130Z:6d4d4492-cfb3-43c4-afb7-0af2e1b7bfc6" ], + "x-ms-request-id": [ "fdcb1f8b-f110-457f-a79e-052db7bc9e2f" ], + "x-ms-correlation-request-id": [ "fdcb1f8b-f110-457f-a79e-052db7bc9e2f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005100Z:fdcb1f8b-f110-457f-a79e-052db7bc9e2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:01:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:51:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -160,14 +160,14 @@ "Content": null } }, - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ac8cf42b-e250-46c5-b4db-9718982a0527?api-version=2020-02-15+5": { + "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ac8cf42b-e250-46c5-b4db-9718982a0527?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "441", "442" ], - "x-ms-client-request-id": [ "132aee36-9623-457f-a205-01d905bf822f", "132aee36-9623-457f-a205-01d905bf822f" ], + "x-ms-client-request-id": [ "866f7e34-7092-4085-bbed-19329fc71338", "866f7e34-7092-4085-bbed-19329fc71338" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -183,32 +183,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "aae79c23-f577-461b-9d33-a0fe558d34ff" ], - "x-ms-request-id": [ "97426fec-bed8-455e-a187-f20277d0b67b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "5dc242fe-079c-4956-addf-b534c7c003c9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130200Z:aae79c23-f577-461b-9d33-a0fe558d34ff" ], + "x-ms-correlation-request-id": [ "50357723-1408-4062-a9cc-d32864255ea6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005130Z:50357723-1408-4062-a9cc-d32864255ea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:51:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ac8cf42b-e250-46c5-b4db-9718982a0527\",\"name\":\"ac8cf42b-e250-46c5-b4db-9718982a0527\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:01:30.4760206Z\",\"endTime\":\"2020-05-07T13:01:30.5385094Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"45118212-2140-4653-8fb2-7633745c1374\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e7a7c0d-c333-4706-926d-1c75efb7979f\",\"name\":\"2e7a7c0d-c333-4706-926d-1c75efb7979f\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:51:00.4269949Z\",\"endTime\":\"2020-08-03T00:51:00.5051673Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"93e6368d-7881-4739-bfa3-d341be8582fd\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ac8cf42b-e250-46c5-b4db-9718982a0527?api-version=2020-02-15\u0026operationResultResponseType=Location+6": { + "Remove-AzKustoDatabasePrincipalAssignment+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14\u0026operationResultResponseType=Location+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ac8cf42b-e250-46c5-b4db-9718982a0527?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e7a7c0d-c333-4706-926d-1c75efb7979f?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { "x-ms-unique-id": [ "441", "442", "443" ], - "x-ms-client-request-id": [ "132aee36-9623-457f-a205-01d905bf822f", "132aee36-9623-457f-a205-01d905bf822f", "132aee36-9623-457f-a205-01d905bf822f" ], + "x-ms-client-request-id": [ "866f7e34-7092-4085-bbed-19329fc71338", "866f7e34-7092-4085-bbed-19329fc71338", "866f7e34-7092-4085-bbed-19329fc71338" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -223,15 +223,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "99593bdf-7235-4c94-a111-3204696ddb5e" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "7f0c82bc-bcf7-4460-9d21-a057ef24606f" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-correlation-request-id": [ "e76912f2-2c47-415a-b9eb-4a4fb964cbce" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130201Z:e76912f2-2c47-415a-b9eb-4a4fb964cbce" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-correlation-request-id": [ "73943f99-0aa1-4277-925b-2c77836afdff" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005130Z:73943f99-0aa1-4277-925b-2c77836afdff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:02:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:51:30 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Start-AzKustoCluster.Recording.json b/src/Kusto/test/Start-AzKustoCluster.Recording.json index ce9faf2938f7..f47d4f0ccb22 100644 --- a/src/Kusto/test/Start-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Start-AzKustoCluster.Recording.json @@ -1,12 +1,12 @@ { - "Start-AzKustoCluster+[NoContext]+Start+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/stop?api-version=2020-02-15+1": { + "Start-AzKustoCluster+[NoContext]+Start+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/stop?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,17 +21,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "0d1f5d6a-ab08-4514-8cc2-162daad1b887" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "5ca4b91e-0417-46eb-999c-316b274e187f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-correlation-request-id": [ "e663be15-df86-4928-9700-20f228d47272" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130304Z:e663be15-df86-4928-9700-20f228d47272" ], + "x-ms-correlation-request-id": [ "64e5a5a3-d398-4a38-bc5c-26142a33807b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005234Z:64e5a5a3-d398-4a38-bc5c-26142a33807b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:03:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:52:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -40,14 +40,14 @@ "Content": null } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+2": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -63,32 +63,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], - "x-ms-request-id": [ "7cf6ea50-8b21-4185-878e-3dff57d7e360" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "da136720-ecfb-40ae-b93d-58cb2673dcf1" ], + "x-ms-request-id": [ "1f5275f5-8277-49dd-a4b6-887976ca82a0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "36ce380e-11a0-417f-aca9-61fb22323638" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130334Z:36ce380e-11a0-417f-aca9-61fb22323638" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005304Z:da136720-ecfb-40ae-b93d-58cb2673dcf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:03:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:53:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+3": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -104,32 +104,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "7d5cf280-1c6f-41f7-8974-e39c6eb4002b" ], - "x-ms-request-id": [ "cddd3cdb-75e6-414e-8b88-d68671947db5" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "46453579-2052-4c49-927d-9b0dd2a2d758" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130405Z:7d5cf280-1c6f-41f7-8974-e39c6eb4002b" ], + "x-ms-correlation-request-id": [ "86d7b9dc-fe52-4c52-808c-2f87a3e94a46" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005335Z:86d7b9dc-fe52-4c52-808c-2f87a3e94a46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:04:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:53:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+4": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -145,32 +145,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "275" ], - "x-ms-request-id": [ "35b3a0a5-a04c-4222-8522-b44f641bd9ef" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "277" ], + "x-ms-request-id": [ "4bb0ebcf-a48d-45cc-9b41-c4fdcfaf3324" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b259f818-ee05-42de-9b38-14c1a4a2c90b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130435Z:b259f818-ee05-42de-9b38-14c1a4a2c90b" ], + "x-ms-correlation-request-id": [ "b6d49283-851f-49e4-ae93-dee35862a73c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005405Z:b6d49283-851f-49e4-ae93-dee35862a73c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:04:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:54:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+5": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -186,32 +186,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "75aa6424-8008-4d27-a1fc-d3cc05f3683c" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "276" ], + "x-ms-request-id": [ "81285c49-dd26-4b81-ab6e-23fc5a1f525e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5b8973f0-8375-426f-936f-3d633ee4e806" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130505Z:5b8973f0-8375-426f-936f-3d633ee4e806" ], + "x-ms-correlation-request-id": [ "4a34a4a7-01b4-48cb-9407-4c3dbb8c8111" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005435Z:4a34a4a7-01b4-48cb-9407-4c3dbb8c8111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:05:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:54:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+6": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -227,32 +227,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "c9acffc1-4286-4573-8528-aacc12b2600c" ], - "x-ms-request-id": [ "7eeab5d3-0504-48c2-aa3d-a6ae261e8cad" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "a3471662-9a25-4ba6-a839-318fc03c8e06" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130536Z:c9acffc1-4286-4573-8528-aacc12b2600c" ], + "x-ms-correlation-request-id": [ "f6afb7af-b6eb-4843-bf15-650cf23ca046" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005506Z:f6afb7af-b6eb-4843-bf15-650cf23ca046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:05:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:55:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+7": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -268,32 +268,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "974a1b36-5f98-4d57-b877-f190440d832c" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "0353e65d-d4c3-486e-8841-35f4b03b0d1c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b6de47be-3003-46e8-be06-74641e68cc81" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130606Z:b6de47be-3003-46e8-be06-74641e68cc81" ], + "x-ms-correlation-request-id": [ "ad9d65bd-b5d6-430d-84b1-35e4bb0da297" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005536Z:ad9d65bd-b5d6-430d-84b1-35e4bb0da297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:06:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:55:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+8": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -309,32 +309,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "61469251-1435-4647-9384-bcf178d185c6" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "dc969d3e-bae7-4140-994c-4ca675674b28" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f20d0e9d-6115-45ef-91f3-17042b1f48e1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130636Z:f20d0e9d-6115-45ef-91f3-17042b1f48e1" ], + "x-ms-correlation-request-id": [ "adf8eb10-deae-44e8-9e8e-e101b2785a88" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005606Z:adf8eb10-deae-44e8-9e8e-e101b2785a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:06:36 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:56:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+9": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -350,32 +350,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2cbfeccd-38d5-43dc-a735-04f52505695e" ], - "x-ms-request-id": [ "54c8358a-ba31-4e30-a6c9-2891212dc6f7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "47aa578b-02a2-4e91-8d7e-6abef8c38dd0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130707Z:2cbfeccd-38d5-43dc-a735-04f52505695e" ], + "x-ms-correlation-request-id": [ "2e6f780d-37ea-4df8-96aa-9751d73f2beb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005636Z:2e6f780d-37ea-4df8-96aa-9751d73f2beb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:07:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:56:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+10": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -391,32 +391,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "25ed9557-5b7b-4624-b342-bc832b51992e" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "5844ca8d-ede7-4687-a198-de53b48cc399" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d909369f-7ac6-47b4-964f-ba75339fcc36" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130737Z:d909369f-7ac6-47b4-964f-ba75339fcc36" ], + "x-ms-correlation-request-id": [ "b7a1985b-8085-447d-b511-a96e3f57c922" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005707Z:b7a1985b-8085-447d-b511-a96e3f57c922" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:07:37 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:57:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+11": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -432,32 +432,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "b1df1496-4477-4531-9551-745f5a53c597" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "de55661c-d874-4a31-a7d9-ad33cf139e19" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "115d86fb-413b-4227-8865-5d0809140b13" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130808Z:115d86fb-413b-4227-8865-5d0809140b13" ], + "x-ms-correlation-request-id": [ "1816558a-5b45-416c-b8ba-3638bbb3ffb8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005737Z:1816558a-5b45-416c-b8ba-3638bbb3ffb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:08:07 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:57:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+12": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -473,32 +473,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8ebf990d-411d-4ba9-a751-f56fbd1ae73c" ], - "x-ms-request-id": [ "5354cd0f-ac29-46cd-8303-92e185a14118" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "c3be0dc1-7d4e-472c-b957-1bf9da560a03" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130838Z:8ebf990d-411d-4ba9-a751-f56fbd1ae73c" ], + "x-ms-correlation-request-id": [ "90d5d48a-8ee1-4cee-b5f0-b27f14555693" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005807Z:90d5d48a-8ee1-4cee-b5f0-b27f14555693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:08:38 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:58:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+13": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -514,32 +514,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "7d4a5c16-f725-4986-98c7-9dba24e63533" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "2d174e9d-4120-4491-bc4d-2b794832bf22" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d3e3a4fd-c6c0-49ca-9cba-addb4d564f17" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130908Z:d3e3a4fd-c6c0-49ca-9cba-addb4d564f17" ], + "x-ms-correlation-request-id": [ "d655192d-1a12-4e92-95d3-fdd473d2a25b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005837Z:d655192d-1a12-4e92-95d3-fdd473d2a25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:09:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:58:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+14": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -555,32 +555,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], - "x-ms-request-id": [ "879ddb58-3850-4c2b-b534-d3186d68bd58" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "844416ed-edaa-44cc-9654-5e18a4a642d6" ], + "x-ms-request-id": [ "d438a03a-d14a-473a-8aab-e103332498dc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8c0d1b7e-7e51-412f-983c-c42cd50a158c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T130939Z:8c0d1b7e-7e51-412f-983c-c42cd50a158c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005908Z:844416ed-edaa-44cc-9654-5e18a4a642d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:09:38 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:59:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+15": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -596,32 +596,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "dfe88be2-16ad-4955-8213-2652e0907853" ], - "x-ms-request-id": [ "a9e0bf87-adef-4717-a86d-90893a36a47d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "a9f4ce69-bd64-4264-8599-26e335cb20a1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131009Z:dfe88be2-16ad-4955-8213-2652e0907853" ], + "x-ms-correlation-request-id": [ "b35d7796-909b-45d2-93dc-8c3363494580" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T005938Z:b35d7796-909b-45d2-93dc-8c3363494580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:10:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 00:59:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+16": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -637,32 +637,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "a8d87e37-7896-4fec-b3d6-752ac6a8dd4e" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "5d400a69-c89c-40e1-83e6-7e4d15ed7fd2" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "eb55bcb1-f593-4c19-a5da-373f4952ff87" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131039Z:eb55bcb1-f593-4c19-a5da-373f4952ff87" ], + "x-ms-correlation-request-id": [ "9eb9fb11-136f-4ddb-bbd4-dd4e9532ab87" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010008Z:9eb9fb11-136f-4ddb-bbd4-dd4e9532ab87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:10:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:00:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Running\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T00:52:35.3476637Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+17": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -678,32 +678,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "2bc66bd6-9c3d-4ae1-9d2f-0782f9414390" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "778dcb0d-bc15-4ee6-ad8b-0d4afc4d1fe9" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "06ca98f2-24ad-4fda-8318-b96ca9c9cd21" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131111Z:06ca98f2-24ad-4fda-8318-b96ca9c9cd21" ], + "x-ms-correlation-request-id": [ "b240eaf3-97b8-45a6-89b1-3af64051dc70" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010039Z:b240eaf3-97b8-45a6-89b1-3af64051dc70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:11:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:00:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"name\":\"16ee235d-fb70-46fe-9f51-6e104dd17c48\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T00:52:34.4882116Z\",\"endTime\":\"2020-08-03T01:00:23.5794083Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"e3fb9310-2cfd-499a-97c7-e91aeb081abf\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+18": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14\u0026operationResultResponseType=Location+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/16ee235d-fb70-46fe-9f51-6e104dd17c48?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], + "x-ms-client-request-id": [ "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328", "b7c1f216-c26a-432a-aaea-9c15f339c328" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -718,97 +718,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "862d6c25-2a0a-4fdc-8ba9-f996cca5d2fb" ], - "x-ms-request-id": [ "5a5b93d2-0c10-469d-b434-26d7e6141763" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131141Z:862d6c25-2a0a-4fdc-8ba9-f996cca5d2fb" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:11:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:03:05.2007226Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15+19": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "18f2ee98-68d4-41d4-afb6-7674080e7931" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c064e3f6-4d12-447e-8057-a971ff7e82af" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131212Z:c064e3f6-4d12-447e-8057-a971ff7e82af" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:12:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "466" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fb638e02-6713-41e7-be39-6b83774396a4\",\"name\":\"fb638e02-6713-41e7-be39-6b83774396a4\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:03:04.544548Z\",\"endTime\":\"2020-05-07T13:11:43.3993717Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c6928c3c-11b7-4f63-aab4-376b92dbfcff\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15\u0026operationResultResponseType=Location+20": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fb638e02-6713-41e7-be39-6b83774396a4?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466", "467", "468", "469" ], - "x-ms-client-request-id": [ "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047", "93393615-a7e0-478f-b3fe-203005c68047" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "14167fc4-997b-441d-8c4e-c8c08d74e73e" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "4914685e-96f8-4f54-bb77-f141f8536451" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-correlation-request-id": [ "de48b487-e657-464f-b5dc-d1e2c2c7b503" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131212Z:de48b487-e657-464f-b5dc-d1e2c2c7b503" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-correlation-request-id": [ "ef0fd667-5a15-47be-948e-2c587d535c35" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010039Z:ef0fd667-5a15-47be-948e-2c587d535c35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:12:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:00:39 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -817,14 +735,14 @@ "Content": null } }, - "Start-AzKustoCluster+[NoContext]+Start+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/start?api-version=2020-02-15+21": { + "Start-AzKustoCluster+[NoContext]+Start+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/start?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -839,17 +757,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "9e0d5a3b-1dc4-46fd-b733-567c864a8d84" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "08d57916-0b1c-4b2e-8629-c65b9c10d196" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-correlation-request-id": [ "62f390de-cb2a-4636-abcc-2d9bc1c49829" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131212Z:62f390de-cb2a-4636-abcc-2d9bc1c49829" ], + "x-ms-correlation-request-id": [ "0bfae240-209c-4c26-a357-ba5cfb3fad6d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010039Z:0bfae240-209c-4c26-a357-ba5cfb3fad6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:12:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:00:39 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -858,14 +776,14 @@ "Content": null } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+22": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -881,32 +799,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "bef48b89-c925-43e8-8137-cfacb96ac45c" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "17902427-7eb2-4030-961c-c266f46a26d8" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "aaf3b466-4789-46c9-af41-af912b47e914" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131243Z:aaf3b466-4789-46c9-af41-af912b47e914" ], + "x-ms-correlation-request-id": [ "003c5f25-86be-4177-a0f3-a424fc4ad492" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010110Z:003c5f25-86be-4177-a0f3-a424fc4ad492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:12:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+23": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -922,32 +840,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "c6aa9ff2-757b-4ff3-91f3-c06d45d7b893" ], - "x-ms-request-id": [ "f78d3fa1-170c-4102-9691-0edee7269271" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "ae8b880e-bb39-4575-bdb8-743a7db7c07d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131313Z:c6aa9ff2-757b-4ff3-91f3-c06d45d7b893" ], + "x-ms-correlation-request-id": [ "5662048e-327a-48a2-83b3-0980321c6de3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010140Z:5662048e-327a-48a2-83b3-0980321c6de3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:13:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:01:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+24": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -963,32 +881,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "239fc2d5-0419-4afe-8cb2-1b4fad99f45e" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "799a84c9-d05e-4f67-8251-389ae5d5aaf2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b4d11058-5100-4cc3-acf6-29107c87be87" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131343Z:b4d11058-5100-4cc3-acf6-29107c87be87" ], + "x-ms-correlation-request-id": [ "cd99a655-1950-4df3-b271-96b3ecafe5d4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010210Z:cd99a655-1950-4df3-b271-96b3ecafe5d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:13:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:02:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+25": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1004,32 +922,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "ddeb820b-978b-4dc5-b284-e8056e0c55d7" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "7ee2b9bf-0c7a-4c98-8143-13bb4853b621" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8d616e3c-dd9c-485d-b0b0-0fd8f4407d98" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131414Z:8d616e3c-dd9c-485d-b0b0-0fd8f4407d98" ], + "x-ms-correlation-request-id": [ "8dc78690-cb43-4a9c-bacb-0b94c8e82d09" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010240Z:8dc78690-cb43-4a9c-bacb-0b94c8e82d09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:14:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:02:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+26": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1045,32 +963,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "85a47d77-8f83-4d14-9885-ac719d85f661" ], - "x-ms-request-id": [ "76292eb8-3e18-45c9-b380-bb675699d2f4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "fdad1d9a-56c9-40ef-962d-2b3c106e85de" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131446Z:85a47d77-8f83-4d14-9885-ac719d85f661" ], + "x-ms-correlation-request-id": [ "e34f8b02-1e24-4975-aeb8-e6e61198a6ab" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010310Z:e34f8b02-1e24-4975-aeb8-e6e61198a6ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:14:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:03:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+27": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1086,32 +1004,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "575e7667-74fd-4907-b8ec-87dbf1a0c0df" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "9c63eb62-8ffd-4d2f-b417-8db281b7d543" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "2948dd9f-7c0c-4631-ab83-b55c8e758e95" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131516Z:2948dd9f-7c0c-4631-ab83-b55c8e758e95" ], + "x-ms-correlation-request-id": [ "50e7ef8d-adc1-46d4-8912-688584e1c64a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010341Z:50e7ef8d-adc1-46d4-8912-688584e1c64a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:15:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:03:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+28": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1127,32 +1045,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "ee5bc5df-abb7-449a-8221-5a3c05a2c602" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "3d6d46dd-c042-44f8-9c81-d653fa20d804" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ab6abbc6-cbce-4734-98fb-69db3f9af97c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131547Z:ab6abbc6-cbce-4734-98fb-69db3f9af97c" ], + "x-ms-correlation-request-id": [ "771e38fe-bb97-400d-8eb4-7731caf573b7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010411Z:771e38fe-bb97-400d-8eb4-7731caf573b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:15:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:04:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+29": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1168,32 +1086,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "b9b3da03-3b42-4de8-993e-7725b81fa815" ], - "x-ms-request-id": [ "435588d9-3f42-47eb-95d3-aa2d279d83db" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "faab927b-60c6-4206-9160-435469c219af" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131617Z:b9b3da03-3b42-4de8-993e-7725b81fa815" ], + "x-ms-correlation-request-id": [ "7872da36-36cb-4de0-9233-fd9eadc5b897" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010441Z:7872da36-36cb-4de0-9233-fd9eadc5b897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:16:17 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:04:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+30": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1209,32 +1127,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "3d15e1fd-6af7-4b61-9ebf-eb02f2045e53" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "69219df3-7b1a-49e8-8c14-e5e553cc9e00" ], + "x-ms-request-id": [ "7c5f6ea8-c94e-4e51-8794-ec471cbdb9bb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ba719868-5027-46cf-bb4f-2beee2de1821" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131648Z:ba719868-5027-46cf-bb4f-2beee2de1821" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010511Z:69219df3-7b1a-49e8-8c14-e5e553cc9e00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:16:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:05:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+31": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477", "478" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1250,32 +1168,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "5878e32a-1f94-42b2-b5af-1a0614a8aa4d" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "7fa3346b-df13-4abd-968e-1c3b46fc6e6c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "1aeb0f41-69ba-4da7-8958-b7624ac5eb94" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131718Z:1aeb0f41-69ba-4da7-8958-b7624ac5eb94" ], + "x-ms-correlation-request-id": [ "a03b1bed-4e96-48f2-b691-4ee57600980b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010542Z:a03b1bed-4e96-48f2-b691-4ee57600980b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:17:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:05:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+32": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477", "478", "479" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1291,32 +1209,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0590d95c-4126-4cf6-8168-0742545e4751" ], - "x-ms-request-id": [ "8c1356ed-da93-4dd2-917b-6eaef8036282" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "8b030629-8109-4732-a4c4-b2e2fa9bb93e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131748Z:0590d95c-4126-4cf6-8168-0742545e4751" ], + "x-ms-correlation-request-id": [ "9d85f8c1-c1fa-4728-87b7-1fe928d95af4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010612Z:9d85f8c1-c1fa-4728-87b7-1fe928d95af4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:17:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:06:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+33": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1332,32 +1250,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "8cf62e39-d6cb-4acd-82ac-9a7ec7292b39" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "740d75a0-2f5e-4974-be0e-ea725384baeb" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7e0470b7-279c-4894-9077-be30b8743955" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131819Z:7e0470b7-279c-4894-9077-be30b8743955" ], + "x-ms-correlation-request-id": [ "ba8b44d4-45b9-43a3-904f-5607b479628d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010642Z:ba8b44d4-45b9-43a3-904f-5607b479628d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:18:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:06:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+34": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1373,32 +1291,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "b5042191-3be5-491b-b755-8f2df7ddef5e" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "a7fb257e-c63f-4a2e-a637-4d39bb0c4411" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a54e4c4a-838c-483b-a2fb-ebfef15b5cfd" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131849Z:a54e4c4a-838c-483b-a2fb-ebfef15b5cfd" ], + "x-ms-correlation-request-id": [ "5e740642-a60e-4030-b22e-a8a1dec979fa" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010713Z:5e740642-a60e-4030-b22e-a8a1dec979fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:18:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:07:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+35": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1414,32 +1332,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "af870e8f-fded-4e19-9e51-a17601cd6a02" ], - "x-ms-request-id": [ "a5eb0220-0e1e-4c23-adb9-a3babe92960c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "af81a98a-8e53-4ea5-8b1a-2bccc9c7e688" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131919Z:af870e8f-fded-4e19-9e51-a17601cd6a02" ], + "x-ms-correlation-request-id": [ "2441a603-4336-4dea-ac17-edcade135634" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010743Z:2441a603-4336-4dea-ac17-edcade135634" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:19:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:07:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+36": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484", "485" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1455,32 +1373,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "561460e2-5812-4440-9451-c50ebfcc11ea" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "9b209b94-0227-4674-9fe0-0518f96bac48" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ce3c2674-ceff-4f3f-8e82-df9016bc5859" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T131950Z:ce3c2674-ceff-4f3f-8e82-df9016bc5859" ], + "x-ms-correlation-request-id": [ "86f25d6e-93f7-48d0-bdd8-b7f37b331afc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010813Z:86f25d6e-93f7-48d0-bdd8-b7f37b331afc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:19:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:00:40.9620405Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+37": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1496,32 +1414,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "7ee2fb12-da3a-480c-87b1-ac4b34e20976" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "849dddcb-f9d5-4327-b63d-2ab72edf7341" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a2b6c95b-0f96-4922-a212-787e24923524" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132020Z:a2b6c95b-0f96-4922-a212-787e24923524" ], + "x-ms-correlation-request-id": [ "74d46fba-fdeb-4f40-9185-254364004cae" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010844Z:74d46fba-fdeb-4f40-9185-254364004cae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:20:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"name\":\"21368fed-e3ca-42e8-a793-69bdbc6310a0\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:00:39.7120042Z\",\"endTime\":\"2020-08-03T01:08:36.322055Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"0e233a93-c333-4954-bb5a-6e95bf6f3875\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+38": { + "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14\u0026operationResultResponseType=Location+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/21368fed-e3ca-42e8-a793-69bdbc6310a0?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], + "x-ms-unique-id": [ "468", "469", "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484", "485" ], + "x-ms-client-request-id": [ "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f", "9fff9fae-68f3-4af6-8a33-ad483d8f378f" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1536,138 +1454,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "406af92e-7f10-4a9d-ae57-3aa66dcd5658" ], - "x-ms-request-id": [ "1cf8718a-79de-45f5-8966-315f746ecd69" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132050Z:406af92e-7f10-4a9d-ae57-3aa66dcd5658" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:20:50 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+39": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "4f7574be-6dcc-412f-b524-3fbd06c1466a" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ae729db4-66e5-4303-a215-3a3aeb3e69b7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132121Z:ae729db4-66e5-4303-a215-3a3aeb3e69b7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:21 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:12:13.5097888Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15+40": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "105c61f0-7f49-4df2-955f-7ba3fcb5a95b" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "522a923f-8b16-461a-becb-36df198a16d2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132151Z:522a923f-8b16-461a-becb-36df198a16d2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:51 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "466" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/58878a97-1cad-4962-82e0-9966c4f972fb\",\"name\":\"58878a97-1cad-4962-82e0-9966c4f972fb\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:12:12.7754098Z\",\"endTime\":\"2020-05-07T13:21:24.6306832Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"d9286955-8535-43e7-82ef-ec997b2b6353\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+Start+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15\u0026operationResultResponseType=Location+41": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/58878a97-1cad-4962-82e0-9966c4f972fb?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "470", "471", "472", "473", "474", "475", "476", "477", "478", "479", "480", "481", "482", "483", "484", "485", "486", "487", "488", "489", "490" ], - "x-ms-client-request-id": [ "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4", "cd065afe-3fcc-4873-b0bf-19916659ccb4" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1c736ca7-63b9-4d06-98a3-db71f3196069" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "0479efee-5602-4a89-a28e-5fa9851b8239" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "4a3f29a3-b53f-467a-9450-eaa6c3c21f19" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132151Z:4a3f29a3-b53f-467a-9450-eaa6c3c21f19" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-correlation-request-id": [ "2c7c39d3-58d4-49f8-9788-9bf8b095c5cf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010844Z:2c7c39d3-58d4-49f8-9788-9bf8b095c5cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:44 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1676,14 +1471,14 @@ "Content": null } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a?api-version=2020-02-15+1": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "491" ], - "x-ms-client-request-id": [ "78156839-f63e-497f-9dc1-ea58d3690b4e" ], + "x-ms-unique-id": [ "486" ], + "x-ms-client-request-id": [ "3ed1d881-f349-403e-86a1-141f422cd18c" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1701,31 +1496,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "3b1fb02c-bb44-41fa-b8a8-f543e28a4894" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "2315b5f9-f7cd-46b7-a113-40647fd05980" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3506987d-3801-44db-8348-4c1bbf197276" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132151Z:3506987d-3801-44db-8348-4c1bbf197276" ], + "x-ms-correlation-request-id": [ "c16de3f4-6a83-4e62-97e5-03d68155f106" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010844Z:c16de3f4-6a83-4e62-97e5-03d68155f106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a\",\"name\":\"testclustervmhz6a\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclustervmhz6a.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclustervmhz6a.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4\",\"name\":\"testclusterv76dg4\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterv76dg4.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterv76dg4.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/stop?api-version=2020-02-15+2": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/stop?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1740,17 +1535,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "e735294d-4d42-4707-9c70-390e8d67e494" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "b35f0ec6-e137-4db6-ae45-cfe47c5d43ba" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-correlation-request-id": [ "b14a58d3-3b0c-488d-bca6-00eccff479ed" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132152Z:b14a58d3-3b0c-488d-bca6-00eccff479ed" ], + "x-ms-correlation-request-id": [ "9637ccbb-d0ee-4094-af8f-6e10f6b31599" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010845Z:9637ccbb-d0ee-4094-af8f-6e10f6b31599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:21:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:08:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1759,14 +1554,14 @@ "Content": null } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+3": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -1782,32 +1577,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "958c0930-2717-49fb-bc18-172d26a98471" ], - "x-ms-request-id": [ "9abfae7b-6216-4621-8664-66ebcd21ac21" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "d90fb1f1-d657-436b-9f2f-4b118661feba" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132222Z:958c0930-2717-49fb-bc18-172d26a98471" ], + "x-ms-correlation-request-id": [ "15eb5c0e-c51f-40f5-9312-83c1ec04a70e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010915Z:15eb5c0e-c51f-40f5-9312-83c1ec04a70e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:22:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:09:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+4": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1823,32 +1618,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "43cad03c-6122-4521-aad5-4438facf5c0b" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "46b00337-a6de-426c-b8ad-36f5921bcd24" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "52fa69c2-70ce-488b-826d-1f8cbcce4084" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132253Z:52fa69c2-70ce-488b-826d-1f8cbcce4084" ], + "x-ms-correlation-request-id": [ "b58b1ad5-774e-48cd-b7b2-c630ea3782df" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T010945Z:b58b1ad5-774e-48cd-b7b2-c630ea3782df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:22:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:09:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+5": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1864,32 +1659,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "83574302-cbc2-49ae-af60-92a25375ec4b" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "64e461f6-f123-44e7-b2a3-6565b36d7c43" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ba7aaa05-7227-479e-96b0-0e836596a30a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132323Z:ba7aaa05-7227-479e-96b0-0e836596a30a" ], + "x-ms-correlation-request-id": [ "74f9b106-ed17-4923-88a8-6d599c39a12b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011015Z:74f9b106-ed17-4923-88a8-6d599c39a12b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:23:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:10:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+6": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1905,32 +1700,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "fa4480ff-766e-4175-9055-91eec63f2967" ], - "x-ms-request-id": [ "08714c09-ee4d-4176-bf56-6bfe00794450" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "a78984df-79ea-486f-bb91-d70f1011f065" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132353Z:fa4480ff-766e-4175-9055-91eec63f2967" ], + "x-ms-correlation-request-id": [ "e18b26bd-4b24-4e85-8837-1f4f79b21669" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011046Z:e18b26bd-4b24-4e85-8837-1f4f79b21669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:23:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:10:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+7": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1946,32 +1741,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "1e34f33b-be80-4a43-a523-0268fae0c3c8" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "c8e7f7e8-5b1d-4102-8a0e-5698f69cf60f" ], + "x-ms-request-id": [ "7e5d58d9-457a-4fd3-8da7-ccef6521eefa" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8dc599de-7820-4602-929a-1eac366d236f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132424Z:8dc599de-7820-4602-929a-1eac366d236f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011116Z:c8e7f7e8-5b1d-4102-8a0e-5698f69cf60f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:24:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:11:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+8": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492", "493" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1987,32 +1782,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "64847521-4f0c-44e5-a9b0-f41a2701ce66" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "119f6584-53fc-4e37-a1aa-a582cb9a1f33" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b781e337-4a4d-44c3-9c53-89bef06892b6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132454Z:b781e337-4a4d-44c3-9c53-89bef06892b6" ], + "x-ms-correlation-request-id": [ "96a17990-f2b0-426f-8fd7-e3a2ef6a612a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011146Z:96a17990-f2b0-426f-8fd7-e3a2ef6a612a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:24:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:11:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+9": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492", "493", "494" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2028,32 +1823,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "f0b69cc9-e1a3-4d26-b77a-5a7c31ca0685" ], - "x-ms-request-id": [ "068a2b4a-3eed-423a-a8f1-1615f6e1472f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "b28b6aeb-563c-4263-9c90-15bcf71f8340" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132524Z:f0b69cc9-e1a3-4d26-b77a-5a7c31ca0685" ], + "x-ms-correlation-request-id": [ "2b69466e-952b-44b6-9b6d-ae041bc8e505" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011217Z:2b69466e-952b-44b6-9b6d-ae041bc8e505" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:25:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:12:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+10": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492", "493", "494", "495" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2069,32 +1864,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "36400dba-1bc0-4b7d-86f6-f1309feae015" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "51aa19a9-7e25-4dee-8aa6-fcc32657d4e4" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d2a2d248-7071-4a94-a875-28d2de1f6fe5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132555Z:d2a2d248-7071-4a94-a875-28d2de1f6fe5" ], + "x-ms-correlation-request-id": [ "3ffdbdc4-816c-4b3a-a2d5-f8419e206fc8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011247Z:3ffdbdc4-816c-4b3a-a2d5-f8419e206fc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:25:54 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:12:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+11": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492", "493", "494", "495", "496" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2110,32 +1905,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "eaa3823f-4584-4c1d-a0d1-eade86d3077c" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "72ea18e3-874a-4d13-9cf9-849660c331c3" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7e25e79b-9cd0-466d-9404-1086bbc7fa62" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132625Z:7e25e79b-9cd0-466d-9404-1086bbc7fa62" ], + "x-ms-correlation-request-id": [ "e8e99bef-2a34-4a6d-8a2b-ab705e0db24f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011317Z:e8e99bef-2a34-4a6d-8a2b-ab705e0db24f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:26:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:13:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+12": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492", "493", "494", "495", "496", "497" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2151,32 +1946,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "6e2e091b-3d99-4d23-8cd0-e904a5c83ec6" ], - "x-ms-request-id": [ "ad3179a7-1f97-4558-8ab8-3abed829692a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "7bf8b3b8-4bff-455c-abdb-718636a56b7e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132655Z:6e2e091b-3d99-4d23-8cd0-e904a5c83ec6" ], + "x-ms-correlation-request-id": [ "17e57860-3e8c-40c9-8a9e-6566acb12cd1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011347Z:17e57860-3e8c-40c9-8a9e-6566acb12cd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:26:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:13:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+13": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492", "493", "494", "495", "496", "497", "498" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2192,32 +1987,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "14d52790-6305-47cb-914e-08ebcc30118a" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "12a0a0aa-a07c-4e03-85ba-8ba51f2af62e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d3183c9f-19f6-4297-9d01-d13bbbbaed59" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132726Z:d3183c9f-19f6-4297-9d01-d13bbbbaed59" ], + "x-ms-correlation-request-id": [ "f8a47c19-5a8f-4830-a6c9-e5eedd5686cd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011418Z:f8a47c19-5a8f-4830-a6c9-e5eedd5686cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:27:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:14:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:08:45.9242118Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+14": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492", "493", "494", "495", "496", "497", "498", "499" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2233,32 +2028,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "ef90f75a-2718-42b4-991e-54c324d90442" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "d5ed0e6d-377a-420d-84b0-2794cb9b7141" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8e2b2a45-e240-468f-a4e8-c3859a91cb60" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132756Z:8e2b2a45-e240-468f-a4e8-c3859a91cb60" ], + "x-ms-correlation-request-id": [ "f1d61144-7a84-4554-b6b5-3b563fc68c95" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011448Z:f1d61144-7a84-4554-b6b5-3b563fc68c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:27:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:14:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"name\":\"8e5aa865-92f9-4254-a19b-ce5db62c81c8\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:08:45.1117039Z\",\"endTime\":\"2020-08-03T01:14:38.0210259Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3fe50d01-9f93-4703-9f54-b7843206c83e\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+15": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14\u0026operationResultResponseType=Location+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/8e5aa865-92f9-4254-a19b-ce5db62c81c8?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], + "x-ms-unique-id": [ "487", "488", "489", "490", "491", "492", "493", "494", "495", "496", "497", "498", "499", "500" ], + "x-ms-client-request-id": [ "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41", "924bb347-09df-4f93-9899-cf267a21dc41" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2273,201 +2068,76 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ab5ffd6e-9b9d-4958-9dda-e09ad4371a3a" ], - "x-ms-request-id": [ "82f6b15e-862d-4029-9647-81779feefa84" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "fdcc181a-dbc9-4d3b-831a-03bcea662fdb" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132826Z:ab5ffd6e-9b9d-4958-9dda-e09ad4371a3a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-correlation-request-id": [ "fe656c37-3ac4-4a71-ac4b-00c367fcd771" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011448Z:fe656c37-3ac4-4a71-ac4b-00c367fcd771" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:28:26 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:14:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": null } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+16": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14+16": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "b8f2272b-6ace-421f-af60-919502cb07ac" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "51e861d7-8297-4285-9dcf-8da1c8420c5e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "649f2485-fcb1-4003-811f-77a91eb71966" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132857Z:649f2485-fcb1-4003-811f-77a91eb71966" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], + "x-ms-correlation-request-id": [ "1a452c18-d7d6-4f6b-bf3a-9a0eaf1b11c6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011448Z:1a452c18-d7d6-4f6b-bf3a-9a0eaf1b11c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:28:56 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:14:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": null } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+17": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "fe8898de-79f9-4db7-b01f-fa74ac145520" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "1665eb4b-0f3b-47fc-9b3b-969b4b345f87" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132927Z:1665eb4b-0f3b-47fc-9b3b-969b4b345f87" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:29:27 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "463" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+18": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "371c8181-d04e-4e23-a094-9e9cfa868758" ], - "x-ms-request-id": [ "015da6dd-4d5a-46a1-9625-ea3507d616c8" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T132958Z:371c8181-d04e-4e23-a094-9e9cfa868758" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:29:57 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "463" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+19": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "0ad13174-b13a-4bad-be3e-e00918d9bada" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bafd8b38-9d51-47c8-b674-55d954e989d4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133028Z:bafd8b38-9d51-47c8-b674-55d954e989d4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:30:27 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "463" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+20": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2480,35 +2150,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "3814f6c2-867e-4971-999b-08ac2297d9f1" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "d0bc808c-e064-4cf3-90c3-8519e48e5ba9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b9bf056a-d5eb-477c-ab5e-793e4795ef99" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133058Z:b9bf056a-d5eb-477c-ab5e-793e4795ef99" ], + "x-ms-correlation-request-id": [ "675175b6-54bd-4713-b1f0-77a800e5cd59" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011519Z:675175b6-54bd-4713-b1f0-77a800e5cd59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:30:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:15:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+21": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2520,36 +2190,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "6f1e82b1-fb4a-4e2e-9c1f-b87d9c8715bb" ], - "x-ms-request-id": [ "3a649f5f-93b2-4c0f-bdc2-4f35c53aaa25" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "133adb60-f1f1-422b-b2aa-acb80d12a53a" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133129Z:6f1e82b1-fb4a-4e2e-9c1f-b87d9c8715bb" ], + "x-ms-correlation-request-id": [ "497f3852-1695-4fa4-bdbd-54ddb75c4983" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011549Z:497f3852-1695-4fa4-bdbd-54ddb75c4983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:31:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:15:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+22": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2562,35 +2232,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "d8e04c63-351b-416b-95f6-d5c57000b233" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "c482def2-c4e7-4e6f-8d7a-91215d39efc9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f81d8df6-d2b2-4c3e-bdf7-74bf8b00dc48" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133159Z:f81d8df6-d2b2-4c3e-bdf7-74bf8b00dc48" ], + "x-ms-correlation-request-id": [ "448202e3-4949-4594-914e-fd27942ce5f9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011619Z:448202e3-4949-4594-914e-fd27942ce5f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:31:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:16:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+23": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2603,35 +2273,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "6c6264fc-cbde-405c-904d-62703991917d" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "808e41a1-c836-46dd-9d22-f69e382e776f" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "639675c9-e965-4977-874f-3a11acc6039a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133230Z:639675c9-e965-4977-874f-3a11acc6039a" ], + "x-ms-correlation-request-id": [ "3bc081a9-289f-4c49-89f1-256718919a41" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011649Z:3bc081a9-289f-4c49-89f1-256718919a41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:32:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:16:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:21:52.9176305Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15+24": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2643,36 +2313,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "3d62c3c4-3d6b-4bcb-8664-9c8fc2639b1f" ], - "x-ms-request-id": [ "9e3b2798-04f5-44ed-83d8-ad24aa7f6b26" ], + "x-ms-correlation-request-id": [ "34a5f6c8-23b5-43a7-b874-f22813c76e82" ], + "x-ms-request-id": [ "135ec318-bc8e-43ae-aad0-91bb958d2e50" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133300Z:3d62c3c4-3d6b-4bcb-8664-9c8fc2639b1f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011720Z:34a5f6c8-23b5-43a7-b874-f22813c76e82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:32:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:17:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"name\":\"0bb3a3d9-b202-438a-8ecd-1dbafa41b3df\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:21:52.2300902Z\",\"endTime\":\"2020-05-07T13:32:30.0403641Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"6865e7b3-41c8-4a33-84e6-5f86ee13317c\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15\u0026operationResultResponseType=Location+25": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0bb3a3d9-b202-438a-8ecd-1dbafa41b3df?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "492", "493", "494", "495", "496", "497", "498", "499", "500", "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515" ], - "x-ms-client-request-id": [ "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021", "5abc8147-b36c-4d10-aadf-eb8816070021" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2683,76 +2353,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6959cb0a-4324-4a08-aca1-c6271c5ab60c" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], + "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-correlation-request-id": [ "a154fe45-be87-40d6-b17b-b816d05b5cd1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133300Z:a154fe45-be87-40d6-b17b-b816d05b5cd1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:33:00 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/start?api-version=2020-02-15+26": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/start?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "9cdcada0-6fe2-4242-97a6-9899f57c768c" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "1225e2ee-5ab8-49ac-8258-9dd2f99c07af" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-correlation-request-id": [ "ffc0c569-c837-42bf-92c2-63b4fe0f92e2" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133301Z:ffc0c569-c837-42bf-92c2-63b4fe0f92e2" ], + "x-ms-correlation-request-id": [ "a4aff1d8-fde4-4b1c-aedb-648c5dc98256" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011750Z:a4aff1d8-fde4-4b1c-aedb-648c5dc98256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:33:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:17:50 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "492" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+27": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2765,35 +2396,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "5cd2f982-af92-45a9-a4c1-6b25443bceb4" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "a19346d6-6da0-4fac-b609-42df418bf1a3" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ca7fba3b-f628-4cf4-9769-c70430a96b91" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133331Z:ca7fba3b-f628-4cf4-9769-c70430a96b91" ], + "x-ms-correlation-request-id": [ "3c4697a5-933e-4782-83e5-bc78fa73d5d0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011822Z:3c4697a5-933e-4782-83e5-bc78fa73d5d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:33:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:18:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+28": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2805,36 +2436,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "7ee5981f-b30c-471e-8bee-c62294a4975e" ], - "x-ms-request-id": [ "b833787d-d6dc-491c-b2ae-734f48845eb5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "a8c24108-fa9e-4025-a94e-e42642a01ebf" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133401Z:7ee5981f-b30c-471e-8bee-c62294a4975e" ], + "x-ms-correlation-request-id": [ "f5db84e0-ba0d-488b-ad8b-a01af514928d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011852Z:f5db84e0-ba0d-488b-ad8b-a01af514928d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:34:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:18:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+29": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2847,35 +2478,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "ac691b5c-4d02-4d4c-91ac-a5b394db5dcc" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "6e0bb862-c3cd-4d39-8457-dec11e9fddb0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "34507b6f-7768-4c3b-8dcc-6567f3efc6da" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133432Z:34507b6f-7768-4c3b-8dcc-6567f3efc6da" ], + "x-ms-correlation-request-id": [ "2820fc85-2fc2-4845-8017-eef94f06a76e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011922Z:2820fc85-2fc2-4845-8017-eef94f06a76e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:34:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:19:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+30": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2887,36 +2518,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "2e818558-ae14-4da6-8d80-adc404d96aec" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "b1890118-e824-4481-bc89-36388569135d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6c1dd2c3-5e47-48ce-803d-09d14cd67686" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133502Z:6c1dd2c3-5e47-48ce-803d-09d14cd67686" ], + "x-ms-correlation-request-id": [ "fd0eab42-02a1-4e79-a297-9e44c1ecb1b1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T011953Z:fd0eab42-02a1-4e79-a297-9e44c1ecb1b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:35:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:19:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+31": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2928,36 +2559,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a4387c35-fce7-4c86-b01e-aeeaceac5d29" ], - "x-ms-request-id": [ "adf10168-ca4b-44ee-98b4-ccb3647399e7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "580c5d23-60be-4b0a-8601-68f8856d7023" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133533Z:a4387c35-fce7-4c86-b01e-aeeaceac5d29" ], + "x-ms-correlation-request-id": [ "9c63c1a1-df69-4067-a130-c7a5a40c25ea" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012023Z:9c63c1a1-df69-4067-a130-c7a5a40c25ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:35:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:20:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+32": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2969,36 +2600,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "9167aff8-8679-4a60-9f12-6a0050742eb7" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "5110be49-ecef-40c8-b241-e474934aa011" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "11a69743-b8fd-4418-8116-568bfdda91ca" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133603Z:11a69743-b8fd-4418-8116-568bfdda91ca" ], + "x-ms-correlation-request-id": [ "e291273d-f2ee-472d-aa7f-88937af06209" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012053Z:e291273d-f2ee-472d-aa7f-88937af06209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:36:02 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:20:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+33": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3010,36 +2641,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "57456440-df9c-4f9a-8b0c-a36b5d60c869" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "18a35242-52b3-494a-9818-10eb8f5bd3ea" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "05174bda-ffca-4bd5-90cf-da52b1ea48bf" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133633Z:05174bda-ffca-4bd5-90cf-da52b1ea48bf" ], + "x-ms-correlation-request-id": [ "4dd3ec6e-0f7d-4b4b-9480-c1f3c4a4fa57" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012130Z:4dd3ec6e-0f7d-4b4b-9480-c1f3c4a4fa57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:36:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:21:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+34": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3051,36 +2682,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "7d846a90-f051-4a94-a759-fe25523062dd" ], - "x-ms-request-id": [ "3068214b-78ab-41b5-a91c-0e4be3ff3bdf" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "8e047eaa-1682-4f5c-a260-858d75748631" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133704Z:7d846a90-f051-4a94-a759-fe25523062dd" ], + "x-ms-correlation-request-id": [ "c041e08b-bc52-4ca0-b950-a7d13aa6c2f2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012201Z:c041e08b-bc52-4ca0-b950-a7d13aa6c2f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:37:03 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:22:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+35": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3092,36 +2723,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "de48fc1d-8413-4b7d-95f3-c0c90e5a06a5" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "8d90978f-bf8d-4ef6-919e-3ca67f0c2ef1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "637ba692-f3f5-4b28-8e9b-21c103eda901" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133734Z:637ba692-f3f5-4b28-8e9b-21c103eda901" ], + "x-ms-correlation-request-id": [ "ababe9f3-223c-451b-ba7f-06860b9561d9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012231Z:ababe9f3-223c-451b-ba7f-06860b9561d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:37:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:22:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:14:49.9953796Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+36": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516", "517" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3133,36 +2764,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "d53dfd80-d5f0-46ce-a05b-82063b1ace5d" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "8652d322-69fe-4d80-b554-c19c6e0442d0" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7e2c5592-44fd-4c98-85e7-7db7ef8a663a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133804Z:7e2c5592-44fd-4c98-85e7-7db7ef8a663a" ], + "x-ms-correlation-request-id": [ "43798d61-0aad-426a-98e7-14c911f6b7f5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012304Z:43798d61-0aad-426a-98e7-14c911f6b7f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:38:04 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:23:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "461" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"name\":\"04011708-d8f8-4518-a54a-3c0fd53ffd20\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:14:48.8859081Z\",\"endTime\":\"2020-08-03T01:22:47.8690612Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"566b5a16-6430-46f4-8b12-71e429662f3a\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+37": { + "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14\u0026operationResultResponseType=Location+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/04011708-d8f8-4518-a54a-3c0fd53ffd20?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "501", "502", "503", "504", "505", "506", "507", "508", "509", "510", "511", "512", "513", "514", "515", "516", "517", "518" ], + "x-ms-client-request-id": [ "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1", "40ff78e3-bfcf-4810-8d69-ceb26b1589a1" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3173,753 +2804,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "05156276-3faf-4b96-87cb-6e56d5b6fbb3" ], - "x-ms-request-id": [ "75def61f-723b-4912-b205-a1d34bd9589e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "190da742-6682-4498-95e2-33b01dc59a8a" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133835Z:05156276-3faf-4b96-87cb-6e56d5b6fbb3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:38:35 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+38": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "27499077-caab-4bba-9aaf-0f7204d46b81" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b1a91085-2cf5-4317-892a-214a045286fa" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133905Z:b1a91085-2cf5-4317-892a-214a045286fa" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:39:05 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+39": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "4b8ad370-d6af-4cbb-b77f-d09d0f1aa747" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "29d53c8e-5093-40b2-a340-30cf7e75bfc1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T133936Z:29d53c8e-5093-40b2-a340-30cf7e75bfc1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:39:35 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+40": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "b3afdd1f-cf53-4ae4-9b6f-100ee39f3314" ], - "x-ms-request-id": [ "db560cf5-bd02-47e8-ac3a-a25e95ad85ca" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134006Z:b3afdd1f-cf53-4ae4-9b6f-100ee39f3314" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:40:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+41": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "1cf30f26-2432-4630-9e57-64a3cd8f7a62" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "08961de7-b6d6-47ab-9be2-bb05544a6dc7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134037Z:08961de7-b6d6-47ab-9be2-bb05544a6dc7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:40:36 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+42": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "430be055-5cb7-4dae-9671-0dba79a7f391" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7a87c368-9734-495e-9b54-a20cb199e02a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134107Z:7a87c368-9734-495e-9b54-a20cb199e02a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:41:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+43": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a80813ba-62aa-4347-a464-b28ae1182550" ], - "x-ms-request-id": [ "b52ab5bc-8ceb-4493-9618-d7a87fd49ee7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134137Z:a80813ba-62aa-4347-a464-b28ae1182550" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:41:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+44": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "172ead5f-d10c-4bdd-b181-c00e75f81257" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0c832f6f-1b22-4ec6-b38c-da8410c515d0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134208Z:0c832f6f-1b22-4ec6-b38c-da8410c515d0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:42:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+45": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "efb26c77-9017-4cbb-aeff-f2e957e2e629" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e6118d24-c420-4353-88c9-640604725576" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134238Z:e6118d24-c420-4353-88c9-640604725576" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:42:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+46": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2bc04f53-fbf7-4da5-91bb-890b66ae06a4" ], - "x-ms-request-id": [ "e203fd27-fd34-4967-a66e-957534c48433" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134308Z:2bc04f53-fbf7-4da5-91bb-890b66ae06a4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:43:08 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+47": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "755edd81-827e-4d61-9551-fef594050e1d" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a88a7735-3757-483b-9fe7-ca07ebc87e04" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134339Z:a88a7735-3757-483b-9fe7-ca07ebc87e04" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:43:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+48": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537", "538" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "87e93475-9438-4b60-83ed-18d6339665f2" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "33f75bf9-201a-434a-b001-46a08e57620c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134409Z:33f75bf9-201a-434a-b001-46a08e57620c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:44:09 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+49": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537", "538", "539" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "61aca9f0-cd9d-441c-a691-f4176600ba3f" ], - "x-ms-request-id": [ "5354bea2-b611-45b2-852b-840894f7e6de" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134439Z:61aca9f0-cd9d-441c-a691-f4176600ba3f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:44:39 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+50": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537", "538", "539", "540" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "5b1fb8eb-ced2-4258-abd9-7955aafcf87b" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0044af1e-8daa-4905-9db3-2eb0f50984a8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134510Z:0044af1e-8daa-4905-9db3-2eb0f50984a8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:45:09 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+51": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537", "538", "539", "540", "541" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "acc2bcff-82e2-4455-8807-0d8e1bef489e" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e8b39b5d-a9e8-48ca-8fd7-769f15707493" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134540Z:e8b39b5d-a9e8-48ca-8fd7-769f15707493" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:45:40 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+52": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8e6ab0e9-b0c4-407b-bbf4-6bf79c1fdaed" ], - "x-ms-request-id": [ "8d24a521-f520-4243-8a54-61ac1f20149c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134610Z:8e6ab0e9-b0c4-407b-bbf4-6bf79c1fdaed" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:46:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+53": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "79543bba-91ee-40d2-9c28-8074fe70e318" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8bfbd543-6266-4d1d-a5ef-8fa828c52f00" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134641Z:8bfbd543-6266-4d1d-a5ef-8fa828c52f00" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:46:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "461" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Running\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:33:01.999173Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Running\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15+54": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "21530e15-6691-4c34-85a1-705b447c76c7" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "edf397dc-99d5-42e0-8aee-7367c5f829db" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134711Z:edf397dc-99d5-42e0-8aee-7367c5f829db" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:47:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "466" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"name\":\"50660fdc-ef82-42a4-8bdd-8dc6f0b4827c\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T13:33:01.2335687Z\",\"endTime\":\"2020-05-07T13:46:51.1990474Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"cbd4ca26-8155-4629-962c-da344ab52ada\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Start-AzKustoCluster+[NoContext]+StartViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15\u0026operationResultResponseType=Location+55": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/50660fdc-ef82-42a4-8bdd-8dc6f0b4827c?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "516", "517", "518", "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531", "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545" ], - "x-ms-client-request-id": [ "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899", "398a7579-0807-4889-aa30-f4a3ff7f7899" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0c97df10-ff9d-489d-8005-5f137f3cc1e8" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-correlation-request-id": [ "abf44117-95dd-41c6-8c07-2c43e00b0121" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T134711Z:abf44117-95dd-41c6-8c07-2c43e00b0121" ], + "x-ms-correlation-request-id": [ "ef7b46f0-e147-4ce7-9a91-c146399ea1ce" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012305Z:ef7b46f0-e147-4ce7-9a91-c146399ea1ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 13:47:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:23:04 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Stop-AzKustoCluster.Recording.json b/src/Kusto/test/Stop-AzKustoCluster.Recording.json index 9ef14932644b..4501e8ae936c 100644 --- a/src/Kusto/test/Stop-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Stop-AzKustoCluster.Recording.json @@ -1,12 +1,12 @@ { - "Stop-AzKustoCluster+[NoContext]+Stop+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/stop?api-version=2020-02-15+1": { + "Stop-AzKustoCluster+[NoContext]+Stop+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/stop?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,17 +21,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "b4e4fcd6-7f47-4d20-b723-c4b62740b83a" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "f06127b0-5c6f-4d8f-977b-c53362b7448e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "22a7b05b-408b-415a-8df1-eba1bdc87017" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T173620Z:22a7b05b-408b-415a-8df1-eba1bdc87017" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "x-ms-correlation-request-id": [ "ef981698-b06f-4ecc-986e-0b94e1d34fe1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012308Z:ef981698-b06f-4ecc-986e-0b94e1d34fe1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:36:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:23:07 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -40,14 +40,14 @@ "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+2": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -63,32 +63,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "f64eb0fa-ee9d-4ad5-bd18-acb98f354d00" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-correlation-request-id": [ "04ab48ef-eecc-4b59-91f3-a02770e74256" ], + "x-ms-request-id": [ "5d392dc4-a444-484c-8298-9a05a90573de" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "01e760d7-256f-4b38-a678-5fe88fdf4187" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T173650Z:01e760d7-256f-4b38-a678-5fe88fdf4187" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012344Z:04ab48ef-eecc-4b59-91f3-a02770e74256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:36:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:23:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+3": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -104,32 +104,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "544a509a-9871-452d-901d-d3fb49362d53" ], - "x-ms-request-id": [ "a8694384-abd4-44e0-afc3-c6065462d428" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "56b557c0-d7f5-4fc2-862b-e04332993f03" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T173720Z:544a509a-9871-452d-901d-d3fb49362d53" ], + "x-ms-correlation-request-id": [ "1b0ac572-d13d-487b-8511-a64075ae3213" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012416Z:1b0ac572-d13d-487b-8511-a64075ae3213" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:37:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:24:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+4": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -145,32 +145,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "1dd45a32-4739-4e28-b39a-c3805c863570" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "d8eb93b4-c332-41d9-8351-9e104589bc6e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8d7d6655-87f7-4898-926b-681065f9eb21" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T173751Z:8d7d6655-87f7-4898-926b-681065f9eb21" ], + "x-ms-correlation-request-id": [ "9d973054-902d-4155-ac54-523d90fe81cd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012447Z:9d973054-902d-4155-ac54-523d90fe81cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:37:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:24:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+5": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -186,32 +186,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "7aa36036-8f86-446c-adbe-909c19ca737b" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "baa07dc7-5f92-468f-980e-171d3cf816e1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "314327d1-29bd-450f-b052-16f0a8b8303a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T173821Z:314327d1-29bd-450f-b052-16f0a8b8303a" ], + "x-ms-correlation-request-id": [ "ba42947b-a868-496b-bf19-b693924aae48" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012517Z:ba42947b-a868-496b-bf19-b693924aae48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:38:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:25:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+6": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523", "524" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -227,32 +227,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0301e2a4-50d2-4856-93b0-429ff6ae44d2" ], - "x-ms-request-id": [ "852bb325-f8e5-4729-9664-ff4cd5c33e7b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "ab552906-59db-4e6d-a91d-7f2be3d03c78" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T173852Z:0301e2a4-50d2-4856-93b0-429ff6ae44d2" ], + "x-ms-correlation-request-id": [ "57d68bec-0d5e-4697-88d9-1731ed919767" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012548Z:57d68bec-0d5e-4697-88d9-1731ed919767" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:38:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:25:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+7": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523", "524", "525" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -268,32 +268,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], - "x-ms-request-id": [ "08585d0c-14a7-465c-a6ae-b25c6c551671" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "37c5ccdc-ea72-4f0f-8b41-e577b8784cf7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ae28c6e3-a0fa-43ed-86bd-5cef4c6ce3c3" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T173922Z:ae28c6e3-a0fa-43ed-86bd-5cef4c6ce3c3" ], + "x-ms-correlation-request-id": [ "f608cde0-8997-4381-b6ba-19dbf4991086" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012618Z:f608cde0-8997-4381-b6ba-19dbf4991086" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:39:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:26:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+8": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523", "524", "525", "526" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -309,32 +309,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-request-id": [ "0f42a6a6-031e-4ac2-972d-f621bd56b9d6" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "304166fa-af34-460a-a5ad-e21437f66524" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0d728347-36bb-4784-a38d-f06cb1d2c5cc" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T173952Z:0d728347-36bb-4784-a38d-f06cb1d2c5cc" ], + "x-ms-correlation-request-id": [ "c866d2d6-05c4-4df9-9a30-1048967cebf5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012649Z:c866d2d6-05c4-4df9-9a30-1048967cebf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:39:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:26:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+9": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523", "524", "525", "526", "527" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -350,32 +350,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "ebb7a011-9207-4092-b9c9-822f2d2e2e4d" ], - "x-ms-request-id": [ "bf71f43c-561c-4781-9150-8c2d833c916e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "b9665cb9-4078-48df-bc1a-002121ae6933" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174023Z:ebb7a011-9207-4092-b9c9-822f2d2e2e4d" ], + "x-ms-correlation-request-id": [ "eeb6e351-2ab5-4a66-9647-470da7cfbc48" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012720Z:eeb6e351-2ab5-4a66-9647-470da7cfbc48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:40:22 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:27:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+10": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523", "524", "525", "526", "527", "528" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -391,32 +391,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], - "x-ms-request-id": [ "beaceb21-c64a-46c3-87e2-7ba8b9dce939" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "0d39ae05-6e69-46df-81d9-f55f8747d8f1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "1afdcb63-a873-47fa-8b4d-cbff1f1ea1be" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174053Z:1afdcb63-a873-47fa-8b4d-cbff1f1ea1be" ], + "x-ms-correlation-request-id": [ "f2a7b0f2-c873-4ce0-b80d-f9e900235fd5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012754Z:f2a7b0f2-c873-4ce0-b80d-f9e900235fd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:40:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:27:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+11": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -432,32 +432,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "9d0ac24d-d205-4363-9beb-6657d809f147" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "25c2f96e-1bd9-40cf-a2f2-69c8e357d149" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4b9a266d-f1d0-4ea4-8395-170bf36642e4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174123Z:4b9a266d-f1d0-4ea4-8395-170bf36642e4" ], + "x-ms-correlation-request-id": [ "958fdafb-27db-47bf-a7fb-d36f64946b4b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012824Z:958fdafb-27db-47bf-a7fb-d36f64946b4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:41:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:28:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:23:12.0273265Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+12": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -473,32 +473,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "9960844b-7a13-4098-9f06-29e93bbeaab6" ], - "x-ms-request-id": [ "31700958-8e66-4722-b1e0-6a578932f6bc" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "5290f58a-958a-45ee-9c79-2b7210f93c6d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174154Z:9960844b-7a13-4098-9f06-29e93bbeaab6" ], + "x-ms-correlation-request-id": [ "39445035-49f3-480d-8514-b8b0b509b2dc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012857Z:39445035-49f3-480d-8514-b8b0b509b2dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:41:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:28:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"name\":\"2e68f614-2f2d-4604-bfab-5e0387b3ca40\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:23:07.716703Z\",\"endTime\":\"2020-08-03T01:28:55.8059228Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"c0204ca2-7306-4e4a-8042-fc8a4e9b9358\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+13": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14\u0026operationResultResponseType=Location+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2e68f614-2f2d-4604-bfab-5e0387b3ca40?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], + "x-ms-unique-id": [ "519", "520", "521", "522", "523", "524", "525", "526", "527", "528", "529", "530", "531" ], + "x-ms-client-request-id": [ "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50", "893b9598-92e1-4aad-9a58-51ecf722bb50" ], "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -513,119 +513,76 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "23cfedca-d277-4a55-bbef-26dd24a985f0" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "629ecab7-9be5-4f61-8168-e9a52d616312" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174224Z:629ecab7-9be5-4f61-8168-e9a52d616312" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:42:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "463" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "807b8ef9-228f-41e3-bbfa-80e3fc2af159" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-request-id": [ "dc600be3-72ac-4586-bf4a-11d13206abd7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a919b4af-3dd1-4cd1-8ab0-adf3746e9656" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174254Z:a919b4af-3dd1-4cd1-8ab0-adf3746e9656" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-correlation-request-id": [ "19de46f4-9cca-4505-bb31-575295d7817b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012858Z:19de46f4-9cca-4505-bb31-575295d7817b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:42:54 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:28:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+15": { + "Stop-AzKustoCluster+[NoContext]+Stop+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14+14": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "719c1a58-4b0c-4ac8-868e-3a4bd0a56b10" ], - "x-ms-request-id": [ "4bd1a2ee-a142-4555-8e90-a6259c784ddb" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "8af0cfd8-f069-444d-85e2-20100204053b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174325Z:719c1a58-4b0c-4ac8-868e-3a4bd0a56b10" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], + "x-ms-correlation-request-id": [ "f9760624-50e6-490f-badc-f552b41bba28" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012858Z:f9760624-50e6-490f-badc-f552b41bba28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:43:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:28:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+16": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -637,36 +594,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "9fa72e93-3e49-4a90-ac8b-7c8f19de386c" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "6b9f34cc-1caa-4f70-82e9-056e975e00ce" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c81a767b-69d6-4330-9bc9-e5af2ecb1c56" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174355Z:c81a767b-69d6-4330-9bc9-e5af2ecb1c56" ], + "x-ms-correlation-request-id": [ "b9d505a1-e8c0-4b3e-82a2-ecd9201e73cc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T012929Z:b9d505a1-e8c0-4b3e-82a2-ecd9201e73cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:43:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:29:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+17": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -678,36 +635,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "901c8d74-d0da-444f-84a4-dc6b4fb7c472" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-correlation-request-id": [ "c1f8064c-0b5f-4e3f-a718-cf06da9f7cf1" ], + "x-ms-request-id": [ "fad7659b-86e9-4734-91b8-1e42aa81df47" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b00e026c-4ad0-44ca-a6c7-0329763e7b43" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174425Z:b00e026c-4ad0-44ca-a6c7-0329763e7b43" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013001Z:c1f8064c-0b5f-4e3f-a718-cf06da9f7cf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:44:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:30:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+18": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -719,36 +676,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8a1dfcb3-85a4-4124-952e-48026571d652" ], - "x-ms-request-id": [ "68d88f4a-6e9a-4af8-b88f-1fad7221cb35" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "c815e2e9-2f32-4814-9eb4-c09e198ae520" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174456Z:8a1dfcb3-85a4-4124-952e-48026571d652" ], + "x-ms-correlation-request-id": [ "99364189-242d-4cad-b593-f531d8c67694" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013032Z:99364189-242d-4cad-b593-f531d8c67694" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:44:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:30:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+19": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -760,36 +717,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "e20ad0dd-0a81-4951-8564-ebf2c365b1df" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "6ba40a61-acd2-4e69-a1b4-578a6cc8f2f5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f1f2c992-8ac9-4983-8e3b-098edcda4e90" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174526Z:f1f2c992-8ac9-4983-8e3b-098edcda4e90" ], + "x-ms-correlation-request-id": [ "bb766234-f329-4e32-a2c0-376de1c871cf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013102Z:bb766234-f329-4e32-a2c0-376de1c871cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:45:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:31:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+20": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -801,36 +758,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "c8d05439-1f33-4dfb-9242-c3ab55380881" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "dbc14c71-5136-4881-85fa-72de86f4a842" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "febccfe6-4c72-4e9f-b84c-1107b21593d4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174557Z:febccfe6-4c72-4e9f-b84c-1107b21593d4" ], + "x-ms-correlation-request-id": [ "5d63d826-051e-4b8e-92ab-1db0faebd396" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013133Z:5d63d826-051e-4b8e-92ab-1db0faebd396" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:45:56 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:31:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+21": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593", "594" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -842,36 +799,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "1c849553-4136-411d-a71b-c5737d96681b" ], - "x-ms-request-id": [ "db1ec6ca-24d2-442d-9afc-4179a3a0b384" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "33035f7e-970a-48c5-a56e-13a5289361b1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174627Z:1c849553-4136-411d-a71b-c5737d96681b" ], + "x-ms-correlation-request-id": [ "0f06e659-91a8-4979-be5e-deb7a122f861" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013203Z:0f06e659-91a8-4979-be5e-deb7a122f861" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:46:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:32:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "463" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:36:21.1320157Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15+22": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593", "594", "595" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -883,116 +840,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "009dcc35-8889-4877-85bf-9173a68790a2" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "8dff5c16-8b59-4573-b58a-e65d32b44482" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "678b01f1-c1f6-40dc-9b1f-61ed143fb802" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174657Z:678b01f1-c1f6-40dc-9b1f-61ed143fb802" ], + "x-ms-correlation-request-id": [ "7631827c-1916-4c71-bf9f-20c4163cbac2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013233Z:7631827c-1916-4c71-bf9f-20c4163cbac2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:46:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:32:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "466" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"name\":\"d05cb43f-8b35-46a0-ab31-6503a9551c86\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T17:36:20.3819821Z\",\"endTime\":\"2020-05-07T17:46:57.254713Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"3d272257-1266-417b-a55d-3e59fd611cc6\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15\u0026operationResultResponseType=Location+23": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d05cb43f-8b35-46a0-ab31-6503a9551c86?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584", "585", "586", "587", "588", "589", "590", "591", "592", "593", "594", "595", "596" ], - "x-ms-client-request-id": [ "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a", "aa4370c0-8436-4155-a9dc-7f5d05ee622a" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop", "Stop-AzKustoCluster_Stop" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fee2a6bc-6051-4559-84d1-2f1201e2939c" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "9de12db0-11ae-4895-8e15-f15f8a7f1364" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174658Z:9de12db0-11ae-4895-8e15-f15f8a7f1364" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:46:57 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/start?api-version=2020-02-15+24": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/start?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "2e15170a-7be9-4e4f-a0a3-bdabb3cb49d0" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "50c0af7d-bd6c-438d-8b04-f23e36532d51" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174658Z:50c0af7d-bd6c-438d-8b04-f23e36532d51" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:46:57 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+25": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597", "598" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1004,36 +881,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "4326450b-dbaf-49d7-96d6-87d86c1eb1ed" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "110f20aa-a5a6-47d9-9d32-c68730eac7bd" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e4432c05-37e9-40ba-97cb-ecb97b3d788f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174728Z:e4432c05-37e9-40ba-97cb-ecb97b3d788f" ], + "x-ms-correlation-request-id": [ "67324ff9-bf70-432d-b18c-ee1dd3e303d5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013303Z:67324ff9-bf70-432d-b18c-ee1dd3e303d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:47:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:33:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+26": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597", "598", "599" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1045,36 +922,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "d4231464-4d8f-40b9-a3c7-94f989857a5b" ], - "x-ms-request-id": [ "51dcf465-577a-4c50-8e88-f386a9d4b129" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "49c5e289-9a40-4d02-80e6-721bc47161a8" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174758Z:d4231464-4d8f-40b9-a3c7-94f989857a5b" ], + "x-ms-correlation-request-id": [ "eae9faef-5fba-4fa8-90f2-153b222dfc80" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013334Z:eae9faef-5fba-4fa8-90f2-153b222dfc80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:47:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:33:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+27": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1086,36 +963,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "f8266d14-e64e-44c0-9199-884e473a0631" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "7d2fb2f9-5e94-47a4-b654-ce6680019c01" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "da66f40f-9f5e-4870-a04a-38aff721acf0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174829Z:da66f40f-9f5e-4870-a04a-38aff721acf0" ], + "x-ms-correlation-request-id": [ "ef492258-7990-44e9-99d2-934be0cf7a08" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013404Z:ef492258-7990-44e9-99d2-934be0cf7a08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:48:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:34:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+28": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1127,36 +1004,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "d4b05cc9-9a24-43b8-9506-5c6fe04748fb" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "3528bfeb-0f71-40f7-880c-57c671ea9f00" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "579342e7-aeb5-4871-bdf4-49883b60246e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174859Z:579342e7-aeb5-4871-bdf4-49883b60246e" ], + "x-ms-correlation-request-id": [ "c355197b-a53c-4286-83af-b241144ba2a3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013434Z:c355197b-a53c-4286-83af-b241144ba2a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:48:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:34:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+29": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1168,36 +1045,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "dc1b6a03-eb2a-47b7-ba8e-d2501c293ac9" ], - "x-ms-request-id": [ "3c110671-c5dc-4082-a523-30037e9832a9" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], + "x-ms-request-id": [ "74a30784-4659-4e42-ba3f-54d7e142a6e4" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T174929Z:dc1b6a03-eb2a-47b7-ba8e-d2501c293ac9" ], + "x-ms-correlation-request-id": [ "9e7c58f9-e51a-425d-b850-5612e7893e69" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013505Z:9e7c58f9-e51a-425d-b850-5612e7893e69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:49:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:35:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+30": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1210,35 +1087,35 @@ "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "5db81431-3b1d-45a4-9eae-add7a7b9785b" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-request-id": [ "064bd980-26ea-43df-bc72-efbea9859d90" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "33597bc6-ee7d-4f44-af98-4a4e1536c575" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175000Z:33597bc6-ee7d-4f44-af98-4a4e1536c575" ], + "x-ms-correlation-request-id": [ "d953e21e-a413-43c3-ab24-e3aa63b7f24f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013535Z:d953e21e-a413-43c3-ab24-e3aa63b7f24f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:50:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:35:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+31": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1250,36 +1127,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], + "x-ms-correlation-request-id": [ "ab07ecdd-4812-48ee-834e-4ccc7aba1fcf" ], + "x-ms-request-id": [ "27c9ff9f-4f28-484f-9bd5-deb1dd681d79" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "e482547b-a1c6-4c8e-a091-fcebcad52ab9" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "8376be39-ec7b-4f57-8a1f-d96adf330c1c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175030Z:8376be39-ec7b-4f57-8a1f-d96adf330c1c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013605Z:ab07ecdd-4812-48ee-834e-4ccc7aba1fcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:50:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:36:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+32": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1291,773 +1168,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "7c7a52b0-6db8-450b-a3f9-cedbac71908d" ], - "x-ms-request-id": [ "5a9dac82-9737-401f-831a-24ae019912e6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-request-id": [ "66501f01-e684-4fa4-a291-4582eef13845" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175101Z:7c7a52b0-6db8-450b-a3f9-cedbac71908d" ], + "x-ms-correlation-request-id": [ "d23ef8a2-5894-4618-92b0-927a5f18a7d4" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013636Z:d23ef8a2-5894-4618-92b0-927a5f18a7d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:51:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:36:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+33": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+30": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "e7427e05-58a7-4eb8-9b84-3f23d798568a" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c7a6ba91-fc2d-4f05-97a7-91ea3e473473" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175132Z:c7a6ba91-fc2d-4f05-97a7-91ea3e473473" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:51:31 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+34": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "ccc7be49-036b-44c9-91fa-2975e8dd4e1d" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "50f2dc46-90c3-4e07-85c0-99b67137b9ee" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175202Z:50f2dc46-90c3-4e07-85c0-99b67137b9ee" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:52:01 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+35": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "c054fd59-7279-453e-821e-ef1634736ccc" ], - "x-ms-request-id": [ "f25758b8-01ad-4167-8b3e-dae61cae6a4b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175232Z:c054fd59-7279-453e-821e-ef1634736ccc" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:52:31 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+36": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "9ff10d91-9646-4832-86a2-5652ac481240" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e3772963-5d0a-47d8-9e27-e40fcb9c48a0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175303Z:e3772963-5d0a-47d8-9e27-e40fcb9c48a0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:53:02 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+37": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "98067dbc-8505-4c77-9e73-a48b41824219" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "127010b5-bb3a-4b80-abcb-369109a1f096" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175333Z:127010b5-bb3a-4b80-abcb-369109a1f096" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:53:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+38": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "6fafc7f8-02b0-445c-89f0-557e973b3dfb" ], - "x-ms-request-id": [ "85cb7789-47df-4a7f-815f-3067908897f4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175403Z:6fafc7f8-02b0-445c-89f0-557e973b3dfb" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:54:03 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+39": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "1aa2e342-be8c-47f3-9f9b-2b2b910988bc" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "7813e49e-b782-42c2-ba1f-db8213e86ee4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175434Z:7813e49e-b782-42c2-ba1f-db8213e86ee4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:54:34 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+40": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "60e37203-ac17-4595-90cb-a11c7c86c7f1" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "1113e51f-e8e5-4f4e-9663-98c9914162e7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175504Z:1113e51f-e8e5-4f4e-9663-98c9914162e7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:55:03 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+41": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2fa9553e-c3ed-40f5-9ae3-f94ffb5eff9c" ], - "x-ms-request-id": [ "ddbc39ca-0c2a-4dc4-8302-11b8bbb12c4c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175534Z:2fa9553e-c3ed-40f5-9ae3-f94ffb5eff9c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:55:34 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+42": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614", "615" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "26dc3aa4-f15b-441c-b7e7-32ad51fd43d2" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "70ba7a23-640b-46c4-89ba-71b48776130a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175605Z:70ba7a23-640b-46c4-89ba-71b48776130a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:56:04 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:46:59.0984737Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15+43": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614", "615", "616" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "80cbef5d-5fcb-43fd-aed6-a69a240374d1" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d0975376-0d55-4db8-b49a-3a8f25dfc8be" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175635Z:d0975376-0d55-4db8-b49a-3a8f25dfc8be" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:56:35 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "466" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/3ea1410d-31ae-4a39-9498-793b706f3758\",\"name\":\"3ea1410d-31ae-4a39-9498-793b706f3758\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T17:46:58.2859716Z\",\"endTime\":\"2020-05-07T17:56:27.6511362Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1c4be8e3-f8b9-4653-9222-08c2c77bca3f\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15\u0026operationResultResponseType=Location+44": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/3ea1410d-31ae-4a39-9498-793b706f3758?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "597", "598", "599", "600", "601", "602", "603", "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614", "615", "616", "617" ], - "x-ms-client-request-id": [ "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6", "e6a27609-ced6-4205-9268-3a5bb55d43b6" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6e496f97-f1ad-48e7-aba4-fa01a927207e" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-correlation-request-id": [ "0a0b2c22-3398-4d15-967d-cf5537a2d80a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175635Z:0a0b2c22-3398-4d15-967d-cf5537a2d80a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:56:35 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a?api-version=2020-02-15+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "618" ], - "x-ms-client-request-id": [ "64e16635-c868-4b2f-b193-0346334b0aaf" ], - "CommandName": [ "Get-AzKustoCluster" ], - "FullCommandName": [ "Get-AzKustoCluster_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "5bc21f63-aaec-452c-96e7-b4db2b8241b7" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "26865658-6e42-4e0c-96cf-48ff14b65362" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175636Z:26865658-6e42-4e0c-96cf-48ff14b65362" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:56:35 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "763" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a\",\"name\":\"testclustervmhz6a\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclustervmhz6a.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclustervmhz6a.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/stop?api-version=2020-02-15+2": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/stop?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "619" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "686ee635-cd79-4935-a197-24b8f21188ff" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "31ee6bd6-0609-4af0-9400-0ffccf2f5a09" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175636Z:31ee6bd6-0609-4af0-9400-0ffccf2f5a09" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:56:36 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "619", "620" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "04fcd4e7-115c-4bb6-ae92-a358ef955d9e" ], - "x-ms-request-id": [ "1b60cefc-3704-4fa2-9d93-983f02b42c44" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175706Z:04fcd4e7-115c-4bb6-ae92-a358ef955d9e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:57:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "619", "620", "621" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "56f58743-0d20-4f46-a6b2-35b18051d3e2" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "266cf9d1-057f-4f23-b8bf-56a3e238111b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175737Z:266cf9d1-057f-4f23-b8bf-56a3e238111b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:57:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "59ce9327-7a70-4a36-933c-2838bedb0a29" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "440c427f-617f-4ede-952a-03a375584e3f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175807Z:440c427f-617f-4ede-952a-03a375584e3f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:58:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "cf571cfd-e932-4c66-95af-29f651bc7fa2" ], - "x-ms-request-id": [ "0079850c-0966-43f9-bde4-39fb06cc9ddc" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175837Z:cf571cfd-e932-4c66-95af-29f651bc7fa2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:58:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2069,36 +1209,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "3dd0d173-6f07-4ed3-a992-30eac0a83ba2" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "2a4f1f41-b0fe-45b7-aa49-ae7c8eeb3628" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3ccb9ef5-fe29-40b5-8c62-5e44589fc9d1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175908Z:3ccb9ef5-fe29-40b5-8c62-5e44589fc9d1" ], + "x-ms-correlation-request-id": [ "07cb9e1e-f45f-4046-9b46-55225f1a32d7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013706Z:07cb9e1e-f45f-4046-9b46-55225f1a32d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:59:07 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:29:08.4319654Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+8": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2110,36 +1250,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "cc02bbe2-c6b5-4be6-9ee1-5b5206751159" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "e55a4b81-1b85-403d-9dce-11afa5b1a48e" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "94f58dae-4be0-4a3e-880b-8bb3832d635b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T175938Z:94f58dae-4be0-4a3e-880b-8bb3832d635b" ], + "x-ms-correlation-request-id": [ "8490d160-a492-4678-bc61-484f24bf5b0a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013736Z:8490d160-a492-4678-bc61-484f24bf5b0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 17:59:38 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"name\":\"ee519fed-e3b7-4134-ada0-c9810b4d127c\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:28:58.8374221Z\",\"endTime\":\"2020-08-03T01:37:31.6324355Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"694b388c-8ff1-49b5-a636-7ebd6b311f6b\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+9": { + "Stop-AzKustoCluster+[NoContext]+Stop+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14\u0026operationResultResponseType=Location+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/ee519fed-e3b7-4134-ada0-c9810b4d127c?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "532", "533", "534", "535", "536", "537", "538", "539", "540", "541", "542", "543", "544", "545", "546", "547", "548", "549", "550" ], + "x-ms-client-request-id": [ "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd", "24eb41ac-237d-4c7b-a898-ae4fd0a29afd" ], + "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], + "FullCommandName": [ "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start", "Start-AzKustoCluster_Start" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2150,37 +1290,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "e354c527-7f18-412c-a147-cedc32311cb7" ], - "x-ms-request-id": [ "1726d3a3-ce5e-4090-8284-60c9bb8c3f9a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-request-id": [ "40f1d119-9c4d-4a49-8647-4fd3731e1106" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180008Z:e354c527-7f18-412c-a147-cedc32311cb7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-correlation-request-id": [ "a96786b4-dc0a-4708-a483-a8e754e72483" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013736Z:a96786b4-dc0a-4708-a483-a8e754e72483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:00:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+10": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "050608c9-5267-4f96-a2a6-b01fc927e09a" ], + "CommandName": [ "Get-AzKustoCluster" ], + "FullCommandName": [ "Get-AzKustoCluster_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2191,78 +1329,79 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "4360cca9-b0cb-41c2-beb2-d9ad101916fb" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], + "x-ms-request-id": [ "040f7687-15d4-4bec-9521-2c4ee2ff5ee3" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c8d7bd51-99e1-4004-8b5c-12a2f9688c8a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180039Z:c8d7bd51-99e1-4004-8b5c-12a2f9688c8a" ], + "x-ms-correlation-request-id": [ "aac328c4-db04-4663-9cc3-e5ee48114249" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013737Z:aac328c4-db04-4663-9cc3-e5ee48114249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:00:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4\",\"name\":\"testclusterv76dg4\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterv76dg4.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterv76dg4.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+11": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14+2": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/stop?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 202, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "a12e1604-3c60-4ecd-aa0f-fa52134511c7" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "9dbfb588-3b80-4081-918b-f9a5d709d8f3" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "cda8f464-b678-4b6a-9970-ef7fec12c108" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180109Z:cda8f464-b678-4b6a-9970-ef7fec12c108" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], + "x-ms-correlation-request-id": [ "a2b43804-afb6-4ec0-b639-9622a86ba08d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013737Z:a2b43804-afb6-4ec0-b639-9622a86ba08d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:01:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:37:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+12": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2274,36 +1413,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8898c22f-5d3c-4ba6-899f-f5097ab9c198" ], - "x-ms-request-id": [ "9bedca04-51c4-4480-a45d-edaeb014aa4e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "8eb7c083-8305-463f-ae20-1a47f319ea91" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180139Z:8898c22f-5d3c-4ba6-899f-f5097ab9c198" ], + "x-ms-correlation-request-id": [ "abc6d3f6-e051-46dd-ae4b-180ca36ae97d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013807Z:abc6d3f6-e051-46dd-ae4b-180ca36ae97d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:01:39 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:38:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+13": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2315,36 +1454,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "45930572-b1d0-4d26-86a5-a8719bee6a2b" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "42d72047-d882-482d-a1ec-4ec85cdcf8ca" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5e437bf8-2739-47c8-8345-c2741138791e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180210Z:5e437bf8-2739-47c8-8345-c2741138791e" ], + "x-ms-correlation-request-id": [ "35035958-f922-4e22-a152-38b11a65fadb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013837Z:35035958-f922-4e22-a152-38b11a65fadb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:02:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:38:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+14": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2356,36 +1495,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "c41b74e8-081c-4240-8523-230410c3ee6e" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "1a97dadf-de4c-48b4-9e8e-c636db5ab7cc" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "14c6539e-408d-4e74-b2ef-f108e959e9e8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180240Z:14c6539e-408d-4e74-b2ef-f108e959e9e8" ], + "x-ms-correlation-request-id": [ "3e04e87a-fe92-4821-b4b8-94f9e9336c84" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013908Z:3e04e87a-fe92-4821-b4b8-94f9e9336c84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:02:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:39:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+15": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2397,36 +1536,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "e14a0bc8-805c-4c3b-87c0-093927c080a7" ], - "x-ms-request-id": [ "0dfa3dd8-65d5-41af-9edb-4e3f0927d330" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "bab1cee7-da03-42ae-ba43-843e040914de" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180311Z:e14a0bc8-805c-4c3b-87c0-093927c080a7" ], + "x-ms-correlation-request-id": [ "f720082c-0d64-4a8f-88de-c9084a182f84" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T013938Z:f720082c-0d64-4a8f-88de-c9084a182f84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:03:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:39:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+16": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2438,36 +1577,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "4b145768-c63e-4054-81de-dd78cec2c951" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "86ff3d87-862a-4d55-a61d-c9225d61debc" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b8ccdfe8-365c-4801-922f-8482bc7ab4e7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180341Z:b8ccdfe8-365c-4801-922f-8482bc7ab4e7" ], + "x-ms-correlation-request-id": [ "88bc2946-791b-4426-aa3c-5bec66f6f333" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014008Z:88bc2946-791b-4426-aa3c-5bec66f6f333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:03:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:40:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+17": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633", "634" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2479,36 +1618,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "d68361e7-d595-4e83-90f7-fcdffae44c1b" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "f15f924b-eab8-49af-b93a-f858c9275a23" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "500d572f-9d61-4c35-8670-bef2418dae97" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180411Z:500d572f-9d61-4c35-8670-bef2418dae97" ], + "x-ms-correlation-request-id": [ "7b048d82-512a-473e-b93a-35a14905b7f6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014038Z:7b048d82-512a-473e-b93a-35a14905b7f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:04:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:40:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+18": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633", "634", "635" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2520,36 +1659,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "46391cf1-56b2-4f80-b644-d2ffc5540b66" ], - "x-ms-request-id": [ "929de6d7-fc52-4220-bd52-029ae1461c63" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "a1fc154b-8cbb-4644-b348-e76ebf8c6338" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180442Z:46391cf1-56b2-4f80-b644-d2ffc5540b66" ], + "x-ms-correlation-request-id": [ "d9066149-4d3b-4a7a-b44c-74c495040084" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014109Z:d9066149-4d3b-4a7a-b44c-74c495040084" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:04:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:41:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+19": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633", "634", "635", "636" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2561,36 +1700,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "80be88ac-b2fa-4b82-b558-c687bf3ffe02" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "7dda5210-1e6a-4ccd-917a-3d3955ec8449" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ef4670b2-2c9d-45bb-9ec1-eaab94441e8f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180512Z:ef4670b2-2c9d-45bb-9ec1-eaab94441e8f" ], + "x-ms-correlation-request-id": [ "3ae9612d-075c-45ec-b330-3fec5dcd96c3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014139Z:3ae9612d-075c-45ec-b330-3fec5dcd96c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:05:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:41:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+20": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633", "634", "635", "636", "637" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2602,36 +1741,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "5628dcaf-8963-4f90-8d41-61c18a806afd" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-correlation-request-id": [ "faf7fde2-a934-4772-9e9e-2926a5757ebb" ], + "x-ms-request-id": [ "334f55e9-5dbd-41b4-8791-8f6e7753589e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "20926482-4955-40c4-b6c2-7dcbc6c29fce" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180542Z:20926482-4955-40c4-b6c2-7dcbc6c29fce" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014209Z:faf7fde2-a934-4772-9e9e-2926a5757ebb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:05:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:42:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+21": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633", "634", "635", "636", "637", "638" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561", "562" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2643,36 +1782,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "5aaf35aa-ca85-4a55-8b1d-ad0bec444853" ], - "x-ms-request-id": [ "9cb06f4a-a139-4faa-a92c-8f996f64a142" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "4188d24d-a474-4318-964d-f22c9e613f99" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180613Z:5aaf35aa-ca85-4a55-8b1d-ad0bec444853" ], + "x-ms-correlation-request-id": [ "e0ac1c09-d9b6-4248-890c-e018d9e3f26c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014240Z:e0ac1c09-d9b6-4248-890c-e018d9e3f26c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:06:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:42:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+22": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633", "634", "635", "636", "637", "638", "639" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561", "562", "563" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2684,36 +1823,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "fcb05fe1-e122-4ae6-8d09-af307302db48" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "834caae1-9fb9-45f2-90a0-a9bc30b4ffd1" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3d462a0d-934c-4b0a-b614-5f5e5e11b9a4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180643Z:3d462a0d-934c-4b0a-b614-5f5e5e11b9a4" ], + "x-ms-correlation-request-id": [ "17a9cd2a-cb31-4c2b-a893-fe1d3f6430c6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014310Z:17a9cd2a-cb31-4c2b-a893-fe1d3f6430c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:06:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:43:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "493" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Running\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T17:56:36.885764Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:37:38.2487887Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15+23": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633", "634", "635", "636", "637", "638", "639", "640" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561", "562", "563", "564" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2725,36 +1864,36 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "2f0fef58-b109-4018-bcca-a5494f02538d" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "c60093c3-10d5-4db4-9e89-9c131b54ce5c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "91418415-8c52-42cf-b1e5-a3020b402e94" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180714Z:91418415-8c52-42cf-b1e5-a3020b402e94" ], + "x-ms-correlation-request-id": [ "314c6afa-cd5a-4a15-b993-a06c0e1528f7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014340Z:314c6afa-cd5a-4a15-b993-a06c0e1528f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:07:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:43:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "466" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/6c550060-2355-4313-abc9-c8109a699c95\",\"name\":\"6c550060-2355-4313-abc9-c8109a699c95\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T17:56:36.3076494Z\",\"endTime\":\"2020-05-07T18:07:11.845423Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"01e04047-901a-48f9-b6ca-947bd3f963c5\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"name\":\"7129b573-2f7c-44d3-b5d1-f5baecd612b8\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:37:37.4049712Z\",\"endTime\":\"2020-08-03T01:43:30.2288136Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterSuspend\",\"RootActivityId\":\"9df1008f-4708-40f6-9730-627474b2c143\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15\u0026operationResultResponseType=Location+24": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14\u0026operationResultResponseType=Location+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/6c550060-2355-4313-abc9-c8109a699c95?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/7129b573-2f7c-44d3-b5d1-f5baecd612b8?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630", "631", "632", "633", "634", "635", "636", "637", "638", "639", "640", "641" ], - "x-ms-client-request-id": [ "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369", "058bb4e9-1548-446f-861e-3d161711b369" ], - "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], - "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "552", "553", "554", "555", "556", "557", "558", "559", "560", "561", "562", "563", "564", "565" ], + "x-ms-client-request-id": [ "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a", "dfd7f6fa-798a-4de7-956d-5af35080878a" ], + "CommandName": [ "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster", "Stop-AzKustoCluster" ], + "FullCommandName": [ "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity", "Stop-AzKustoCluster_StopViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2765,15 +1904,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4ba361f0-42b0-478a-9bd9-c2c398060b70" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-request-id": [ "b19bd949-6327-4c3d-9cd3-e4ca59c68097" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-correlation-request-id": [ "e88dad37-3d77-425f-8e66-b430daa1a23a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180714Z:e88dad37-3d77-425f-8e66-b430daa1a23a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-correlation-request-id": [ "cdf1dee5-5cdd-4fb6-9c17-55bd82fbe80c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014340Z:cdf1dee5-5cdd-4fb6-9c17-55bd82fbe80c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:07:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:43:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2782,14 +1921,14 @@ "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/start?api-version=2020-02-15+25": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclustervmhz6a/start?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterv76dg4/start?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2804,17 +1943,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "b2a024ee-480d-46ae-ac86-b9e965b16c16" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "fcf791c5-abf4-4e7d-b1c0-2dc243a28a10" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "0956ae52-19c7-4cbf-b7fc-6502ebbdde35" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180714Z:0956ae52-19c7-4cbf-b7fc-6502ebbdde35" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], + "x-ms-correlation-request-id": [ "e0d716b6-e992-46fb-b8f4-cda4deb64eaf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014341Z:e0d716b6-e992-46fb-b8f4-cda4deb64eaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:07:14 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:43:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2823,14 +1962,14 @@ "Content": null } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+26": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -2846,32 +1985,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "1174b639-a68f-4d60-a1b2-21ae884b7122" ], - "x-ms-request-id": [ "567e45c1-1718-4dfe-9440-b6d959ed1b47" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "cf61c2a2-0ff7-4c7c-9ca0-3ca9f9edee80" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180744Z:1174b639-a68f-4d60-a1b2-21ae884b7122" ], + "x-ms-correlation-request-id": [ "86b071ca-cbc9-4f9b-8a30-f01b0b3d48a2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014411Z:86b071ca-cbc9-4f9b-8a30-f01b0b3d48a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:07:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:44:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+27": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2887,32 +2026,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "ef530a0b-b8f9-40f7-8207-01ba15736d3e" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "69026614-dafb-402e-bf2b-fffe263d7d9d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "d701fe7b-39fe-4b78-bda9-e684146b33e7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180815Z:d701fe7b-39fe-4b78-bda9-e684146b33e7" ], + "x-ms-correlation-request-id": [ "08630638-05b8-4f49-9ff3-945f02fe85ce" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014442Z:08630638-05b8-4f49-9ff3-945f02fe85ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:08:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:44:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+28": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2928,32 +2067,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "15a22d36-f22b-4c93-b8cf-c8b5c94900b8" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "ab027cd3-99d4-4ebe-bec3-64b7189bc21e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3c642ea2-7f2c-4531-a60a-88365b8e1c8a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180845Z:3c642ea2-7f2c-4531-a60a-88365b8e1c8a" ], + "x-ms-correlation-request-id": [ "b513e9c6-d64f-488a-8419-5be371dfcf54" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014512Z:b513e9c6-d64f-488a-8419-5be371dfcf54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:08:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:45:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+29": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -2969,32 +2108,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "27870f18-4f60-4cf7-a18c-4e82eda32aad" ], - "x-ms-request-id": [ "df0a59bc-490b-450d-9c61-07fedd81bb35" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "69614cd5-4a0b-48ea-a6d3-60b8679cb042" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180916Z:27870f18-4f60-4cf7-a18c-4e82eda32aad" ], + "x-ms-correlation-request-id": [ "4f21113a-5d0a-495d-831e-3f16b273ab0f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014542Z:4f21113a-5d0a-495d-831e-3f16b273ab0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:09:15 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:45:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+30": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3010,32 +2149,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "cbe1186e-eecf-4e05-af32-59fbc5307dc6" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "71d183f4-8742-4dc7-bd91-1d5f45f3f2bc" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "43e64d50-985c-46d6-a778-2435562af125" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T180946Z:43e64d50-985c-46d6-a778-2435562af125" ], + "x-ms-correlation-request-id": [ "06c3d3b6-6482-4af6-acfd-26bf3fb411ea" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014612Z:06c3d3b6-6482-4af6-acfd-26bf3fb411ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:09:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:46:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+31": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3051,32 +2190,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "ca32871b-2533-4a99-abce-9678a4144c2a" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "f100fd8f-1274-4e01-851a-8414ede0da63" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "73ae0a3e-c9c8-4d93-a25f-47340159f930" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181016Z:73ae0a3e-c9c8-4d93-a25f-47340159f930" ], + "x-ms-correlation-request-id": [ "d95a5dfb-a562-467a-9d9b-1a478a7670f9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014643Z:d95a5dfb-a562-467a-9d9b-1a478a7670f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:10:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:46:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+32": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3092,32 +2231,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "4e4942f4-d808-45e8-b0fa-2fb063654744" ], - "x-ms-request-id": [ "3f44573c-af75-49d7-8df5-6bc5ccd170fa" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "7eb169e7-ceaf-4817-a744-37782229337e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181047Z:4e4942f4-d808-45e8-b0fa-2fb063654744" ], + "x-ms-correlation-request-id": [ "888eba2b-287b-40af-9d44-dc095ea78986" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014713Z:888eba2b-287b-40af-9d44-dc095ea78986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:10:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:47:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+33": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3133,32 +2272,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "04b60fd8-d72f-4dfe-b41d-5428ec8feec0" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "53e20a59-0587-48ce-af42-276991f97f80" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "06785198-8d26-48be-a261-448208154a77" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181119Z:06785198-8d26-48be-a261-448208154a77" ], + "x-ms-correlation-request-id": [ "1e394c92-3c15-43a8-938a-3a77e37b2b49" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014743Z:1e394c92-3c15-43a8-938a-3a77e37b2b49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:11:18 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:47:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+34": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3174,32 +2313,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "5c0952fb-fa20-4919-9402-ff5ca970bfd1" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-correlation-request-id": [ "fa9c9e05-ff00-4fe7-b727-12377b46a251" ], + "x-ms-request-id": [ "45d8438c-c40e-4380-868c-36dbc76797c1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e1e7f060-edbc-41ab-ac52-0ce95c457983" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181149Z:e1e7f060-edbc-41ab-ac52-0ce95c457983" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014813Z:fa9c9e05-ff00-4fe7-b727-12377b46a251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:11:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:48:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+35": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3215,32 +2354,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "57eba568-7f9e-444a-907a-39705641956c" ], - "x-ms-request-id": [ "d3c83cf7-1025-47e9-b3cb-9722bf9d58d1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "57dce44a-7251-421d-90cd-6f5170f1fd7d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181220Z:57eba568-7f9e-444a-907a-39705641956c" ], + "x-ms-correlation-request-id": [ "5323d4b7-9368-4b63-af10-e98017e57ece" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014844Z:5323d4b7-9368-4b63-af10-e98017e57ece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:12:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:48:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+36": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576", "577" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3256,32 +2395,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "8df476e3-0210-4d0b-96a6-08d0f4eaad59" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "59be367b-1fff-4945-bd23-911c7d9c49dc" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "addfb415-f284-4c3f-99e2-dcc38545296b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181250Z:addfb415-f284-4c3f-99e2-dcc38545296b" ], + "x-ms-correlation-request-id": [ "9ad918f3-18ab-40e5-9033-0fd36e00cae5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014914Z:9ad918f3-18ab-40e5-9033-0fd36e00cae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:12:50 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:49:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+37": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576", "577", "578" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3297,32 +2436,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "d2c0e980-d4d7-4027-99ae-de2e44cf58db" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "ac1d05c4-4df2-40e2-a8a3-4f208958c4d1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5e75cab3-8f2b-46cd-86d7-0c0d2adf53e1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181320Z:5e75cab3-8f2b-46cd-86d7-0c0d2adf53e1" ], + "x-ms-correlation-request-id": [ "685f8592-d0c8-4f95-ac00-d48d1d8099c9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T014944Z:685f8592-d0c8-4f95-ac00-d48d1d8099c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:13:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:49:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+38": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576", "577", "578", "579" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3338,32 +2477,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "8c308e76-7be9-4e4f-8b7b-3174b0355761" ], - "x-ms-request-id": [ "ca0b6c15-8385-438c-a23a-91d92266f53e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "060b5cf0-1d87-46cc-8583-01d1af105563" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181351Z:8c308e76-7be9-4e4f-8b7b-3174b0355761" ], + "x-ms-correlation-request-id": [ "d1ccce5d-842e-472d-842d-2cc7d64f8293" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015015Z:d1ccce5d-842e-472d-842d-2cc7d64f8293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:13:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:50:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+39": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "656" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576", "577", "578", "579", "580" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3379,32 +2518,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "5e81b18a-e98b-4362-a960-edb3b3aa4fc8" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "f594b0d9-84cb-483f-ad11-a093415feafd" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "48e18338-6916-4104-a864-faed1e1905e1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181421Z:48e18338-6916-4104-a864-faed1e1905e1" ], + "x-ms-correlation-request-id": [ "21502dd3-5248-4507-b4a7-5029f150b10a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015045Z:21502dd3-5248-4507-b4a7-5029f150b10a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:14:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:50:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+40": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "656", "657" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576", "577", "578", "579", "580", "581" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3420,32 +2559,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "9ef38d05-1839-40d6-b40a-3554997d56f0" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "8244f73c-f531-4d0b-9239-1ad72bef7236" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f921e5cd-0563-421b-bf56-c5de77960cc9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181452Z:f921e5cd-0563-421b-bf56-c5de77960cc9" ], + "x-ms-correlation-request-id": [ "31609133-1946-4603-b103-d6d7e21493cc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015115Z:31609133-1946-4603-b103-d6d7e21493cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:14:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:51:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+41": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "656", "657", "658" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576", "577", "578", "579", "580", "581", "582" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3461,32 +2600,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "00b0d735-048d-402a-a6c7-f403d940f8d1" ], - "x-ms-request-id": [ "3f7336c2-09fc-424a-872d-37e4c79358ee" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "9d2b0dcf-e568-4b83-adf9-4aa9a0884965" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181522Z:00b0d735-048d-402a-a6c7-f403d940f8d1" ], + "x-ms-correlation-request-id": [ "dd35ea5a-cc2b-439e-8493-5e13d2f5236b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015145Z:dd35ea5a-cc2b-439e-8493-5e13d2f5236b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:15:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:51:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "492" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:43:42.6910009Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+42": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "656", "657", "658", "659" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576", "577", "578", "579", "580", "581", "582", "583" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3502,32 +2641,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "1b84a710-581e-4c84-a789-54053df7f6b8" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "abe0b598-1cc7-4c6a-8a8b-86138119f10b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5af1321e-e6e0-47aa-b7bf-a686bb75eb2b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181552Z:5af1321e-e6e0-47aa-b7bf-a686bb75eb2b" ], + "x-ms-correlation-request-id": [ "676c8b85-9eab-4e21-9b00-60bfa21f9fa8" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015215Z:676c8b85-9eab-4e21-9b00-60bfa21f9fa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:15:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "462" ], + "Content-Length": [ "495" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"name\":\"5bbdbb08-7f36-4a34-bd71-4f43ca015ab2\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:43:41.4722166Z\",\"endTime\":\"2020-08-03T01:51:51.9639103Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"1d6a3641-c61c-4802-b793-a25b28d02292\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+43": { + "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14\u0026operationResultResponseType=Location+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5bbdbb08-7f36-4a34-bd71-4f43ca015ab2?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], + "x-ms-unique-id": [ "566", "567", "568", "569", "570", "571", "572", "573", "574", "575", "576", "577", "578", "579", "580", "581", "582", "583", "584" ], + "x-ms-client-request-id": [ "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d", "3d7443ab-92dc-4327-802c-e765bfbb1d4d" ], "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -3542,97 +2681,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "83c70766-1e2b-49cd-a69d-7ea4f2fd243c" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bddf9bc0-0200-40a7-a4b4-4ab8c6b40128" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181623Z:bddf9bc0-0200-40a7-a4b4-4ab8c6b40128" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:16:22 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "462" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Running\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:07:15.4569447Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Running\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15+44": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660", "661" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "0f10384a-ae4a-492e-8a73-147f0646029f" ], - "x-ms-request-id": [ "41a16a93-6d0d-468a-9827-e62c18efd76d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181653Z:0f10384a-ae4a-492e-8a73-147f0646029f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:16:52 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "465" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/71244fa4-8d01-4774-beca-e81dc8498a88\",\"name\":\"71244fa4-8d01-4774-beca-e81dc8498a88\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T18:07:14.6131777Z\",\"endTime\":\"2020-05-07T18:16:33.398871Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ClusterResume\",\"RootActivityId\":\"e521c833-8a14-4d9e-9ad8-791e9c9d86fd\",\"provisioningState\":\"Succeeded\"}}" - } - }, - "Stop-AzKustoCluster+[NoContext]+StopViaIdentity+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15\u0026operationResultResponseType=Location+45": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/71244fa4-8d01-4774-beca-e81dc8498a88?api-version=2020-02-15\u0026operationResultResponseType=Location", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "642", "643", "644", "645", "646", "647", "648", "649", "650", "651", "652", "653", "654", "655", "656", "657", "658", "659", "660", "661", "662" ], - "x-ms-client-request-id": [ "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c", "ddcbc6ad-ab76-42f0-9daa-faac8dac8f0c" ], - "CommandName": [ "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster", "Start-AzKustoCluster" ], - "FullCommandName": [ "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity", "Start-AzKustoCluster_StartViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview", "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "368380f6-f0fa-445a-90e7-61c472c01830" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], + "x-ms-request-id": [ "7b822f5d-91f1-46a6-b39c-8720635645ae" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "0e7554b6-62c0-4be5-94e5-4f3d6994462e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T181654Z:0e7554b6-62c0-4be5-94e5-4f3d6994462e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-correlation-request-id": [ "b2971801-9a89-4b35-8e49-3b88b0b9e2b9" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015216Z:b2971801-9a89-4b35-8e49-3b88b0b9e2b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 18:16:53 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:16 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json index 30da8b7cd780..a3cf68075962 100644 --- a/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoClusterNameAvailability.Recording.json @@ -1,9 +1,9 @@ { - "Test-AzKustoClusterNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/checkNameAvailability?api-version=2020-02-15+1": { + "Test-AzKustoClusterNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/checkNameAvailability?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"testclusterpb8oay\",\r\n \"type\": \"Microsoft.Kusto/Clusters\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testclusterlbfexs\",\r\n \"type\": \"Microsoft.Kusto/Clusters\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -17,22 +17,22 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "a8f3053a-1394-403c-87a0-de03fda03208" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], + "x-ms-request-id": [ "b11bd8e4-e85b-4447-a15f-02bf78fd7d7f" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "1ed398e4-5d19-4054-be9c-4b280baf96b5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143525Z:1ed398e4-5d19-4054-be9c-4b280baf96b5" ], + "x-ms-correlation-request-id": [ "aa6a4346-207d-437d-a63b-9aa0a9c91277" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015217Z:aa6a4346-207d-437d-a63b-9aa0a9c91277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "154" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"testclusterpb8oay\",\"nameAvailable\":false,\"message\":\"Name \u0027testclusterpb8oay\u0027 with type Engine is already taken. Please specify a different name\"}" + "Content": "{\"name\":\"testclusterlbfexs\",\"nameAvailable\":false,\"message\":\"Name \u0027testclusterlbfexs\u0027 with type Engine is already taken. Please specify a different name\"}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json index 301ef256cc5c..d6d02d5ad59e 100644 --- a/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoClusterPrincipalAssignmentNameAvailability.Recording.json @@ -1,8 +1,8 @@ { - "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15+1": { + "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", "Content": "{\r\n \"name\": \"KustoClientsScenarioTest\",\r\n \"type\": \"Microsoft.Kusto/clusters/principalAssignments\"\r\n}", "Headers": { }, @@ -17,32 +17,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "e03ec8dd-85dc-46c6-8a6c-b24d9087e4d2" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], + "x-ms-request-id": [ "bad448ee-c29f-485b-81f3-71cfea0589aa" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c658a560-f4ba-451d-b31d-04aac9adfbd4" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143526Z:c658a560-f4ba-451d-b31d-04aac9adfbd4" ], + "x-ms-correlation-request-id": [ "03c96b23-afba-43c7-b9c1-967652d87d81" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015217Z:03c96b23-afba-43c7-b9c1-967652d87d81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:26 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "221" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"KustoClientsScenarioTest\",\"nameAvailable\":false,\"message\":\"Cluster principal assignment KustoClientsScenarioTest already exists in cluster testclusterpb8oay. Please select a different principal assignment name.\"}" + "Content": "{\"name\":\"KustoClientsScenarioTest\",\"nameAvailable\":false,\"message\":\"Cluster principal assignment KustoClientsScenarioTest already exists in cluster testclusterlbfexs. Please select a different principal assignment name.\"}" } }, - "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+1": { + "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "652" ], - "x-ms-client-request-id": [ "94fa3b5d-bfa5-4e38-9171-b5523951c08b" ], + "x-ms-unique-id": [ "587" ], + "x-ms-client-request-id": [ "e494a9b2-9d0a-454f-bd41-dfde05c0f15e" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,27 +60,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "76af2d77-062f-4f5e-bdc6-6a5d390f3267" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "83aa5770-d569-4f5e-9b05-7a4403400529" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c4ea58d8-af8a-4341-a7d4-ca5cd5d60312" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143527Z:c4ea58d8-af8a-4341-a7d4-ca5cd5d60312" ], + "x-ms-correlation-request-id": [ "0ad56816-6fdb-4b77-8179-c2f77aa2cfee" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015218Z:0ad56816-6fdb-4b77-8179-c2f77aa2cfee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15+2": { + "Test-AzKustoClusterPrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/clusters/principalAssignments\"\r\n}", "Headers": { }, @@ -95,15 +95,15 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "94fa9100-1c34-48d0-a45b-0660e96d83d1" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], + "x-ms-request-id": [ "0dae84dd-55ef-4021-8070-6a638d9bb8a6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "808c4b5d-f2a2-46de-ba4d-f0d0af7d9941" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143527Z:808c4b5d-f2a2-46de-ba4d-f0d0af7d9941" ], + "x-ms-correlation-request-id": [ "2393feea-439a-4042-a1fe-d37de18e4937" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015218Z:2393feea-439a-4042-a1fe-d37de18e4937" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "65" ], diff --git a/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Recording.json index 92443cfc096a..edea4f2aed4a 100644 --- a/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoDataConnectionNameAvailability.Recording.json @@ -1,9 +1,9 @@ { - "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/checkNameAvailability?api-version=2020-02-15+1": { + "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkNameAvailability?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"testdataconnectionpb8oay\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/dataConnections\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testdataconnectionlbfexs\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/dataConnections\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -17,32 +17,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-request-id": [ "5cc3aff4-923b-4e99-b347-97b58f3b22e9" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], + "x-ms-request-id": [ "c324b3ba-eace-4636-bae8-f45aaa1dad4b" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "95d02b3e-2350-4c78-b691-e995c4f84394" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143633Z:95d02b3e-2350-4c78-b691-e995c4f84394" ], + "x-ms-correlation-request-id": [ "2823f45f-2d3c-46e4-8b69-03116f189d6b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015324Z:2823f45f-2d3c-46e4-8b69-03116f189d6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "259" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"testdataconnectionpb8oay\",\"nameAvailable\":false,\"message\":\"Data Connection testdataconnectionpb8oay already exists in database testdatabasepb8oay in cluster testclusterpb8oay. Please select a different data connection name.\",\"reason\":\"AlreadyExists\"}" + "Content": "{\"name\":\"testdataconnectionlbfexs\",\"nameAvailable\":false,\"message\":\"Data Connection testdataconnectionlbfexs already exists in database testdatabaselbfexs in cluster testclusterlbfexs. Please select a different data connection name.\",\"reason\":\"AlreadyExists\"}" } }, - "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "667" ], - "x-ms-client-request-id": [ "98a19a9b-0afa-4f14-8ae7-c690693e87d0" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "6bd98bf9-61b5-4ff8-8c0c-45ab662e4c9d" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,28 +60,28 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "a9e56e28-6fcb-4cfa-9ea6-8a1b670c6d7f" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "046a3574-5a5f-4924-a3ca-27fe02f88729" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "2f48ecf1-37f3-41a4-9cf3-e263467edf6b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143633Z:2f48ecf1-37f3-41a4-9cf3-e263467edf6b" ], + "x-ms-correlation-request-id": [ "946f41a3-9600-477a-af38-c19c0eb63525" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015324Z:946f41a3-9600-477a-af38-c19c0eb63525" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:32 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/checkNameAvailability?api-version=2020-02-15+2": { + "Test-AzKustoDataConnectionNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkNameAvailability?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"testdataconnectionpb8oayi6wlsf\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/dataConnections\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testdataconnectionlbfexssu8yho\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/dataConnections\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -95,22 +95,22 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-request-id": [ "67eefe54-7612-42a3-a855-5d061da41ffb" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], + "x-ms-request-id": [ "c465bcec-b580-4c02-b2e9-5bcd355b2318" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "416ac39f-13dd-4054-8dbf-aba76c9f1ff8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143634Z:416ac39f-13dd-4054-8dbf-aba76c9f1ff8" ], + "x-ms-correlation-request-id": [ "e7c31ffb-ebb7-466a-af51-70ef01fa7bcb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015325Z:e7c31ffb-ebb7-466a-af51-70ef01fa7bcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:33 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "75" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"testdataconnectionpb8oayi6wlsf\",\"nameAvailable\":true,\"message\":\"\"}" + "Content": "{\"name\":\"testdataconnectionlbfexssu8yho\",\"nameAvailable\":true,\"message\":\"\"}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Recording.json index 8d67d391f1d1..acca3518fefd 100644 --- a/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoDatabaseNameAvailability.Recording.json @@ -1,9 +1,9 @@ { - "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/checkNameAvailability?api-version=2020-02-15+1": { + "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkNameAvailability?api-version=2020-06-14+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"testdatabasepb8oay\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testdatabaselbfexs\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -17,32 +17,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-request-id": [ "6f2f0490-84f0-4d24-a118-fcdbfacd628d" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], + "x-ms-request-id": [ "a462586d-0296-41cc-b524-f5fdcfb1e9c1" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fb5733bd-4db2-473c-81f0-56099ed8a6e5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143528Z:fb5733bd-4db2-473c-81f0-56099ed8a6e5" ], + "x-ms-correlation-request-id": [ "b30547ce-411d-4723-9958-380a96f2ecbe" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015219Z:b30547ce-411d-4723-9958-380a96f2ecbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "177" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"testdatabasepb8oay\",\"nameAvailable\":false,\"message\":\"Database testdatabasepb8oay already exists in cluster testclusterpb8oay. Please select a different database name.\"}" + "Content": "{\"name\":\"testdatabaselbfexs\",\"nameAvailable\":false,\"message\":\"Database testdatabaselbfexs already exists in cluster testclusterlbfexs. Please select a different database name.\"}" } }, - "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+1": { + "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "655" ], - "x-ms-client-request-id": [ "082d03dc-2082-473f-b314-1d93ece5832f" ], + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "0a4f0636-0882-46bf-9427-7b14c8dea020" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,28 +60,28 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "4398d67d-5239-4a32-9283-0459d63174d5" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "110af42f-cd5c-42d7-b840-4029f156944c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "6c31296c-0e49-432c-8d45-5969d7931069" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143528Z:6c31296c-0e49-432c-8d45-5969d7931069" ], + "x-ms-correlation-request-id": [ "ef2ec0ef-caec-48ba-bd4d-55326b0b39bb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015219Z:ef2ec0ef-caec-48ba-bd4d-55326b0b39bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/checkNameAvailability?api-version=2020-02-15+2": { + "Test-AzKustoDatabaseNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkNameAvailability?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/checkNameAvailability?api-version=2020-02-15", - "Content": "{\r\n \"name\": \"testdatabasepb8oay2tmpqx\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/checkNameAvailability?api-version=2020-06-14", + "Content": "{\r\n \"name\": \"testdatabaselbfexswmcyao\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases\"\r\n}", "Headers": { }, "ContentHeaders": { @@ -95,22 +95,22 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-request-id": [ "2de5c933-0fd7-41d2-91b6-a519a67dfe98" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], + "x-ms-request-id": [ "ae7cf1b6-e0c9-462f-9a73-05675a050fef" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "41969c9e-2469-43bb-a941-db3ba4c3c0d6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143528Z:41969c9e-2469-43bb-a941-db3ba4c3c0d6" ], + "x-ms-correlation-request-id": [ "10567a03-cbb8-4dcf-ad97-8b1fe301f198" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015219Z:10567a03-cbb8-4dcf-ad97-8b1fe301f198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:28 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "69" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"testdatabasepb8oay2tmpqx\",\"nameAvailable\":true,\"message\":\"\"}" + "Content": "{\"name\":\"testdatabaselbfexswmcyao\",\"nameAvailable\":true,\"message\":\"\"}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json b/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json index 021105c63a97..d5ff15aa4004 100644 --- a/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json +++ b/src/Kusto/test/Test-AzKustoDatabasePrincipalAssignmentNameAvailability.Recording.json @@ -1,8 +1,8 @@ { - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+1": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$PUT+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": "{\r\n \"properties\": {\r\n \"principalId\": \"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\r\n \"principalType\": \"App\",\r\n \"role\": \"Viewer\"\r\n }\r\n}", "Headers": { }, @@ -17,33 +17,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "x-ms-request-id": [ "930bc777-5d2e-4e98-a1f8-6a8463b089f9" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/137c6cd2-3703-4c32-8ecb-7984fc901042?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "b2739b0b-2b09-4886-9b81-30936267a9cf" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e1d21d05-b618-4c06-a324-10434c520525?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "a650a249-195e-405e-9390-764413f87d84" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143529Z:a650a249-195e-405e-9390-764413f87d84" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], + "x-ms-correlation-request-id": [ "d7922a4a-e505-462a-8044-0e91cc4f4d12" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015220Z:d7922a4a-e505-462a-8044-0e91cc4f4d12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"Viewer\",\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"principalType\":\"App\",\"role\":\"Viewer\",\"provisioningState\":\"Creating\"}}" } }, - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/137c6cd2-3703-4c32-8ecb-7984fc901042?api-version=2020-02-15+2": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e1d21d05-b618-4c06-a324-10434c520525?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/137c6cd2-3703-4c32-8ecb-7984fc901042?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e1d21d05-b618-4c06-a324-10434c520525?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "657", "658" ], - "x-ms-client-request-id": [ "7a787018-06a8-4a08-b694-1ec25f2613f3", "7a787018-06a8-4a08-b694-1ec25f2613f3" ], + "x-ms-unique-id": [ "592", "593" ], + "x-ms-client-request-id": [ "0a0e7ef5-d93b-4153-9c52-fa710f062b66", "0a0e7ef5-d93b-4153-9c52-fa710f062b66" ], "CommandName": [ "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "56d1410b-3832-442b-8eff-29eb5a7f48bd" ], - "x-ms-request-id": [ "c5118bdb-e0b2-403d-906d-82b863e9dced" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "480184f9-622b-43cb-9c9d-ee1b1988aec7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143600Z:56d1410b-3832-442b-8eff-29eb5a7f48bd" ], + "x-ms-correlation-request-id": [ "dbae6460-3a07-4439-9400-2f59b1081fc6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015251Z:dbae6460-3a07-4439-9400-2f59b1081fc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:35:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "473" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/137c6cd2-3703-4c32-8ecb-7984fc901042\",\"name\":\"137c6cd2-3703-4c32-8ecb-7984fc901042\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:35:29.699921Z\",\"endTime\":\"2020-05-07T14:35:29.8405258Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"e8ce7518-3b14-4c8d-a694-d0f8de45a369\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e1d21d05-b618-4c06-a324-10434c520525\",\"name\":\"e1d21d05-b618-4c06-a324-10434c520525\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:52:20.7196516Z\",\"endTime\":\"2020-08-03T01:52:20.8445885Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseAddPrincipals\",\"RootActivityId\":\"8bd9b75e-796d-416d-b9e2-59083f26ee51\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+3": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "657", "658", "659" ], - "x-ms-client-request-id": [ "7a787018-06a8-4a08-b694-1ec25f2613f3", "7a787018-06a8-4a08-b694-1ec25f2613f3", "7a787018-06a8-4a08-b694-1ec25f2613f3" ], + "x-ms-unique-id": [ "592", "593", "594" ], + "x-ms-client-request-id": [ "0a0e7ef5-d93b-4153-9c52-fa710f062b66", "0a0e7ef5-d93b-4153-9c52-fa710f062b66", "0a0e7ef5-d93b-4153-9c52-fa710f062b66" ], "CommandName": [ "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment", "New-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded", "New-AzKustoDatabasePrincipalAssignment_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -102,27 +102,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "30e2741a-1f3a-4bb8-bca5-a32a98ed5886" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "d61b3dc9-c3fe-489a-b654-0b2f3f33b901" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ad503e65-6025-4dc3-a36e-9e0705df4bf0" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143600Z:ad503e65-6025-4dc3-a36e-9e0705df4bf0" ], + "x-ms-correlation-request-id": [ "55c44b63-bd20-4d3d-b8bd-cc439534cb38" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015251Z:55c44b63-bd20-4d3d-b8bd-cc439534cb38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "616" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/principalassignment1\",\"type\":\"Microsoft.Kusto/Clusters/Databases/PrincipalAssignments\",\"etag\":\"\\\"\\\"\",\"tags\":{},\"properties\":{\"principalId\":\"e60fe5c8-d6a5-4dee-b382-fb4502588dd0\",\"role\":\"Viewer\",\"principalType\":\"App\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"tenantName\":\"Microsoft\",\"principalName\":\"lugoldbekusto\",\"provisioningState\":\"Succeeded\"}}" } }, - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15+4": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/principalAssignments\"\r\n}", "Headers": { }, @@ -137,32 +137,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-request-id": [ "3204ef6f-0047-481a-b2a0-298dad8c79db" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], + "x-ms-request-id": [ "d1dee352-3400-4a25-9bd4-53ab93fe6594" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5c32a168-9c02-4158-a8d1-b4b4ca69b7fc" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143601Z:5c32a168-9c02-4158-a8d1-b4b4ca69b7fc" ], + "x-ms-correlation-request-id": [ "5d53fd35-7bb6-45aa-9391-974f2781b189" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015251Z:5d53fd35-7bb6-45aa-9391-974f2781b189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:00 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "216" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"name\":\"principalassignment1\",\"nameAvailable\":false,\"message\":\"Database principal assignment principalassignment1 already exists in database testdatabasepb8oay. Please select a different principal assignment name.\"}" + "Content": "{\"name\":\"principalassignment1\",\"nameAvailable\":false,\"message\":\"Database principal assignment principalassignment1 already exists in database testdatabaselbfexs. Please select a different principal assignment name.\"}" } }, - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15+5": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$DELETE+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14+5": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/PrincipalAssignments/principalassignment1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/PrincipalAssignments/principalassignment1?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "661" ], - "x-ms-client-request-id": [ "a3ae6eca-7a35-43d7-a31f-113806e48cf9" ], + "x-ms-unique-id": [ "596" ], + "x-ms-client-request-id": [ "2e500792-fba4-4eac-be62-dc6734a81d63" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,17 +177,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/995fa2e2-3450-4510-955d-4af1c8f571d2?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/995fa2e2-3450-4510-955d-4af1c8f571d2?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9cbf4ad-c91d-49da-a754-800514b55226?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9cbf4ad-c91d-49da-a754-800514b55226?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "4cf35b9b-adb5-4a10-b65c-133d06e6fa2d" ], - "x-ms-correlation-request-id": [ "4cf35b9b-adb5-4a10-b65c-133d06e6fa2d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143601Z:4cf35b9b-adb5-4a10-b65c-133d06e6fa2d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-request-id": [ "d53d7d46-a5f7-4d73-90b8-a2c66885ae09" ], + "x-ms-correlation-request-id": [ "d53d7d46-a5f7-4d73-90b8-a2c66885ae09" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015252Z:d53d7d46-a5f7-4d73-90b8-a2c66885ae09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:52:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -196,14 +196,14 @@ "Content": null } }, - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/995fa2e2-3450-4510-955d-4af1c8f571d2?api-version=2020-02-15+6": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9cbf4ad-c91d-49da-a754-800514b55226?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/995fa2e2-3450-4510-955d-4af1c8f571d2?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9cbf4ad-c91d-49da-a754-800514b55226?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "661", "662" ], - "x-ms-client-request-id": [ "a3ae6eca-7a35-43d7-a31f-113806e48cf9", "a3ae6eca-7a35-43d7-a31f-113806e48cf9" ], + "x-ms-unique-id": [ "596", "597" ], + "x-ms-client-request-id": [ "2e500792-fba4-4eac-be62-dc6734a81d63", "2e500792-fba4-4eac-be62-dc6734a81d63" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -219,32 +219,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "19b39c0d-d3d6-44fc-bf44-0857888d49bc" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "79c03079-5745-4c47-a2f3-f32f188a9e7f" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b2cbe020-11ca-4b00-a881-f7cdcc98e021" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143631Z:b2cbe020-11ca-4b00-a881-f7cdcc98e021" ], + "x-ms-correlation-request-id": [ "2138012d-d88c-44c9-9a4b-424e34bf01dd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015322Z:2138012d-d88c-44c9-9a4b-424e34bf01dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/995fa2e2-3450-4510-955d-4af1c8f571d2\",\"name\":\"995fa2e2-3450-4510-955d-4af1c8f571d2\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:36:01.5566369Z\",\"endTime\":\"2020-05-07T14:36:01.8378542Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"91c5758d-a15b-4981-8ccb-7dd62d739e08\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/e9cbf4ad-c91d-49da-a754-800514b55226\",\"name\":\"e9cbf4ad-c91d-49da-a754-800514b55226\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:52:52.4208731Z\",\"endTime\":\"2020-08-03T01:52:52.4833874Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseDropPrincipals\",\"RootActivityId\":\"01dcf110-f609-4b34-9042-0569d38d24af\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/995fa2e2-3450-4510-955d-4af1c8f571d2?api-version=2020-02-15\u0026operationResultResponseType=Location+7": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/e9cbf4ad-c91d-49da-a754-800514b55226?api-version=2020-06-14\u0026operationResultResponseType=Location+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/995fa2e2-3450-4510-955d-4af1c8f571d2?api-version=2020-02-15\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/e9cbf4ad-c91d-49da-a754-800514b55226?api-version=2020-06-14\u0026operationResultResponseType=Location", "Content": null, "Headers": { - "x-ms-unique-id": [ "661", "662", "663" ], - "x-ms-client-request-id": [ "a3ae6eca-7a35-43d7-a31f-113806e48cf9", "a3ae6eca-7a35-43d7-a31f-113806e48cf9", "a3ae6eca-7a35-43d7-a31f-113806e48cf9" ], + "x-ms-unique-id": [ "596", "597", "598" ], + "x-ms-client-request-id": [ "2e500792-fba4-4eac-be62-dc6734a81d63", "2e500792-fba4-4eac-be62-dc6734a81d63", "2e500792-fba4-4eac-be62-dc6734a81d63" ], "CommandName": [ "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment", "Remove-AzKustoDatabasePrincipalAssignment" ], "FullCommandName": [ "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete", "Remove-AzKustoDatabasePrincipalAssignment_Delete" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -259,15 +259,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1affe3f1-b294-4aa7-bd0c-8247c0e3a29e" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "691926b7-5b7b-48d9-bd33-ebac324804a5" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-correlation-request-id": [ "20e579ad-855e-4a74-9468-deba7dbcc735" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143632Z:20e579ad-855e-4a74-9468-deba7dbcc735" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-correlation-request-id": [ "eed5bc7d-47e2-4774-a4cb-197acf15045a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015322Z:eed5bc7d-47e2-4774-a4cb-197acf15045a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -276,14 +276,14 @@ "Content": null } }, - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "664" ], - "x-ms-client-request-id": [ "266d9e8d-76c4-4810-a724-929611b991be" ], + "x-ms-unique-id": [ "599" ], + "x-ms-client-request-id": [ "5c779f6a-d361-4a68-8982-d8588c557510" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -301,27 +301,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "4c5355e4-9308-4a95-90c1-92c9a151a72c" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "85dd84d7-6eec-4803-8fc2-1001db8b5e8b" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "360e8b8d-d629-4c47-b466-56a3186fb147" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143632Z:360e8b8d-d629-4c47-b466-56a3186fb147" ], + "x-ms-correlation-request-id": [ "79821fd9-94c0-41e9-aea3-bf5b97351c0d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015323Z:79821fd9-94c0-41e9-aea3-bf5b97351c0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15+2": { + "Test-AzKustoDatabasePrincipalAssignmentNameAvailability+[NoContext]+CheckViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/checkPrincipalAssignmentNameAvailability?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/checkPrincipalAssignmentNameAvailability?api-version=2020-06-14", "Content": "{\r\n \"name\": \"principalassignment1\",\r\n \"type\": \"Microsoft.Kusto/Clusters/Databases/principalAssignments\"\r\n}", "Headers": { }, @@ -336,15 +336,15 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-request-id": [ "28ca3ca7-ed05-4ccf-a481-f6944bd6c11f" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], + "x-ms-request-id": [ "c54198d2-13ab-488c-8b81-e8b9ea4b0dce" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "9ca50380-861a-48eb-99a6-5fdbcfe63570" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143632Z:9ca50380-861a-48eb-99a6-5fdbcfe63570" ], + "x-ms-correlation-request-id": [ "45d18282-f252-4370-8fdb-19ae14e02b53" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015323Z:45d18282-f252-4370-8fdb-19ae14e02b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:31 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "65" ], diff --git a/src/Kusto/test/Update-AzKustoCluster.Recording.json b/src/Kusto/test/Update-AzKustoCluster.Recording.json index 72a68f2aa98c..873500a71e65 100644 --- a/src/Kusto/test/Update-AzKustoCluster.Recording.json +++ b/src/Kusto/test/Update-AzKustoCluster.Recording.json @@ -1,8 +1,8 @@ { - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+1": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "Headers": { }, @@ -17,34 +17,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "32e53e6a-a1d6-432d-bf4a-e5ee61ed72b2" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "79eeb5c1-755b-47cf-ab04-7baa4dc6e6f7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "2d9a8a2b-a5a9-4187-806f-edb5cdc1e2eb" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143635Z:2d9a8a2b-a5a9-4187-806f-edb5cdc1e2eb" ], + "x-ms-correlation-request-id": [ "58b8b9bf-5f20-47c8-aaca-c94799adbaef" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015326Z:58b8b9bf-5f20-47c8-aaca-c94799adbaef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:36:34 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "762" ], + "Content-Length": [ "793" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+2": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -60,32 +60,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "54e515b5-854c-4557-9de9-eebb27c8ddf1" ], - "x-ms-request-id": [ "ef88010d-d7ed-42a4-9d29-c4562b6b5587" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "72a205a4-1ac6-44b7-bd93-64493dc924bc" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143705Z:54e515b5-854c-4557-9de9-eebb27c8ddf1" ], + "x-ms-correlation-request-id": [ "321e13d2-4eb2-4607-b9af-413b58a72035" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015356Z:321e13d2-4eb2-4607-b9af-413b58a72035" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:37:05 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:53:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+3": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -101,32 +101,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "8e00acad-0e34-40ef-9124-616e9783eb3c" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "d99859f1-8ff8-4cee-b967-d26f042e4552" ], + "x-ms-request-id": [ "8da1ea3c-612f-4d29-a5f3-044d0e36a50f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c0abc455-c376-430d-8424-e7cc84a32a63" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143736Z:c0abc455-c376-430d-8424-e7cc84a32a63" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015427Z:d99859f1-8ff8-4cee-b967-d26f042e4552" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:37:35 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:54:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+4": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -142,32 +142,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "x-ms-request-id": [ "d1431204-8df2-43b5-9494-4311ac96411a" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "278" ], + "x-ms-request-id": [ "c51df454-89b2-49e0-8581-9bf5decf167c" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b19ce1a9-23af-4502-8f35-f921a651cd9a" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143806Z:b19ce1a9-23af-4502-8f35-f921a651cd9a" ], + "x-ms-correlation-request-id": [ "a1c2ea43-824f-4781-b122-28d05e8138dc" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015457Z:a1c2ea43-824f-4781-b122-28d05e8138dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:38:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:54:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+5": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -183,32 +183,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "c2d40431-04cd-4281-8513-c4dbeb5e38a9" ], - "x-ms-request-id": [ "4207b2f6-f440-4c4c-a6f2-228aa505ffef" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "5934b69d-9d8b-4850-bd40-7af544e084a7" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143836Z:c2d40431-04cd-4281-8513-c4dbeb5e38a9" ], + "x-ms-correlation-request-id": [ "b761e4b9-3c4b-4fd6-9173-69ccc7c78930" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015527Z:b761e4b9-3c4b-4fd6-9173-69ccc7c78930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:38:36 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:55:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+6": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673", "674" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608", "609" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -224,32 +224,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "07d79d41-5b5d-44a5-875f-643e355ee594" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "10b53b40-7421-4db5-8040-9aa4485cef5a" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "48067bd0-7f1e-4458-81eb-c9ee41e87006" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143907Z:48067bd0-7f1e-4458-81eb-c9ee41e87006" ], + "x-ms-correlation-request-id": [ "db7389dc-3056-426f-b981-5e6a999f89ed" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015558Z:db7389dc-3056-426f-b981-5e6a999f89ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:39:06 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:55:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+7": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673", "674", "675" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608", "609", "610" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -265,32 +265,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "x-ms-request-id": [ "fc14309d-25fc-4d1e-b667-c5179ede175a" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "6203cfc9-8dbb-4858-8f63-8abed0b4963d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "378c1d78-ddd8-4a16-9fb2-2316b8c6a7c8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T143937Z:378c1d78-ddd8-4a16-9fb2-2316b8c6a7c8" ], + "x-ms-correlation-request-id": [ "3b2ba814-0bf5-44dc-9f90-060dc15b9d6f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015628Z:3b2ba814-0bf5-44dc-9f90-060dc15b9d6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:39:37 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:56:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+8": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673", "674", "675", "676" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608", "609", "610", "611" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -306,32 +306,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "bbebd8ab-a0a4-45f7-9593-c6c344afe27d" ], - "x-ms-request-id": [ "d2d2ffe8-93ae-4431-a864-953cbb948c65" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "d49e1e56-aa30-4b32-ab87-4db7f36612e0" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144007Z:bbebd8ab-a0a4-45f7-9593-c6c344afe27d" ], + "x-ms-correlation-request-id": [ "47ca2c0b-0e3b-4525-8467-3eb198ce2912" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015658Z:47ca2c0b-0e3b-4525-8467-3eb198ce2912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:40:07 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:56:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+9": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673", "674", "675", "676", "677" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608", "609", "610", "611", "612" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -347,32 +347,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "f120bd43-272b-408c-9ef1-65c5b6bec4a5" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "6548616f-4018-4c44-9fd1-c97ac816ccf0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "f303fb61-dcf4-4d40-92d9-6fbc1caf46de" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144038Z:f303fb61-dcf4-4d40-92d9-6fbc1caf46de" ], + "x-ms-correlation-request-id": [ "f2e60441-46fd-48ec-8b7a-553030c54351" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015728Z:f2e60441-46fd-48ec-8b7a-553030c54351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:40:37 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:57:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+10": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673", "674", "675", "676", "677", "678" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608", "609", "610", "611", "612", "613" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -388,32 +388,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "adc04bea-aed3-469f-9019-0ea1a6d5ecee" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "04b6247d-0e91-4965-b4c6-f188d352f4a6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "27563abd-cc9f-4c7c-b239-c3e8d80c8de5" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144108Z:27563abd-cc9f-4c7c-b239-c3e8d80c8de5" ], + "x-ms-correlation-request-id": [ "3a0617a7-05b2-494a-9f7f-a69af8e3937a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015758Z:3a0617a7-05b2-494a-9f7f-a69af8e3937a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:41:08 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:57:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+11": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673", "674", "675", "676", "677", "678", "679" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -429,32 +429,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "9426c65f-82db-4df2-b44b-2d49cbc9009a" ], - "x-ms-request-id": [ "2705d586-a5c9-4c28-863c-d8d5468b563f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "5f5bc6fb-d1c6-44ee-8e97-936ff9c329ca" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144138Z:9426c65f-82db-4df2-b44b-2d49cbc9009a" ], + "x-ms-correlation-request-id": [ "8f2a4c92-44fb-43b6-818b-d5070027a10f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015829Z:8f2a4c92-44fb-43b6-818b-d5070027a10f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:41:37 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:58:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:36:36.6590345Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:53:29.166343Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15+12": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/4077d9ab-9a3b-4307-bf08-376d574a53c3?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/2d3bbc05-333c-43ea-be8a-f661d66d939e?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673", "674", "675", "676", "677", "678", "679", "680" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614", "615" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -470,32 +470,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "x-ms-request-id": [ "9257cf6a-f37d-4083-a190-811aacc70273" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "18bcd00b-bb31-4144-8942-455e80242ab3" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fa9c1ab3-268d-44b0-bcc6-6587e4fccf63" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144209Z:fa9c1ab3-268d-44b0-bcc6-6587e4fccf63" ], + "x-ms-correlation-request-id": [ "927e4a46-99c7-4e75-9339-a79f7f60e8fe" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015859Z:927e4a46-99c7-4e75-9339-a79f7f60e8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:58:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"name\":\"4077d9ab-9a3b-4307-bf08-376d574a53c3\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:36:35.2213761Z\",\"endTime\":\"2020-05-07T14:42:08.3195476Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"f26b8bd7-f592-4eed-bf7d-e6eac64b1076\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"name\":\"2d3bbc05-333c-43ea-be8a-f661d66d939e\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:53:26.3848604Z\",\"endTime\":\"2020-08-03T01:58:55.6435026Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"6b3a9a20-aa20-453c-b012-19ce5e378258\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+13": { + "Update-AzKustoCluster+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "669", "670", "671", "672", "673", "674", "675", "676", "677", "678", "679", "680", "681" ], - "x-ms-client-request-id": [ "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae", "0f7e8ce0-605f-4b36-aae9-ca65f1572bae" ], + "x-ms-unique-id": [ "604", "605", "606", "607", "608", "609", "610", "611", "612", "613", "614", "615", "616" ], + "x-ms-client-request-id": [ "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637", "b9fcee16-d2aa-4420-900e-a2c1e6dc9637" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded", "Update-AzKustoCluster_UpdateExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -513,31 +513,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "0e124214-5b34-45de-9e59-9ceaf65cdb71" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "0a7b7eb5-94b1-47a0-9581-9c18dd75b696" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ea8c2bd1-a6e4-4258-8e5b-0fdea639c230" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144209Z:ea8c2bd1-a6e4-4258-8e5b-0fdea639c230" ], + "x-ms-correlation-request-id": [ "c45459dc-aa23-4900-b36d-3d0b374aa576" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015859Z:c45459dc-aa23-4900-b36d-3d0b374aa576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:58:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+1": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "682" ], - "x-ms-client-request-id": [ "16c6e32a-31de-45ae-b446-bdc75867af45" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "4dcc853a-51bb-44cb-8041-6ac044def180" ], "CommandName": [ "Get-AzKustoCluster" ], "FullCommandName": [ "Get-AzKustoCluster_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -555,27 +555,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "c2d55a25-0228-4f0b-8803-f3c1b01178ef" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "b34b1bdd-f1cf-4a8f-8c3a-e1007a219063" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4e2257d2-9106-4f73-b76d-94b0ea028b9c" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144209Z:4e2257d2-9106-4f73-b76d-94b0ea028b9c" ], + "x-ms-correlation-request-id": [ "8df4ba80-86cd-4433-91d9-a1f63f140527" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015859Z:8df4ba80-86cd-4433-91d9-a1f63f140527" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:09 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:58:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D12_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+2": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "Headers": { }, @@ -590,34 +590,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "3998350d-14dd-4ae3-a1c9-082c81431002" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "e8edc6f4-c5ad-46b8-92bc-71d2d215ebae" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "b8963243-a4b0-4178-9f70-1aeab5b484d3" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144210Z:b8963243-a4b0-4178-9f70-1aeab5b484d3" ], + "x-ms-correlation-request-id": [ "8a06853b-5041-4aee-b2b3-7633fa78d117" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015902Z:8a06853b-5041-4aee-b2b3-7633fa78d117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:10 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:59:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "762" ], + "Content-Length": [ "793" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+3": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -633,32 +633,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "1baf7f6f-5dd6-42b3-ab75-48d0a4a94866" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], + "x-ms-request-id": [ "ddd75d93-7baf-4fcb-bb94-55059c3135e3" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "88bf23b6-e781-4036-81f6-37c566cc0485" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144241Z:88bf23b6-e781-4036-81f6-37c566cc0485" ], + "x-ms-correlation-request-id": [ "a9f749b4-abac-4491-b792-863ab720f85c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T015932Z:a9f749b4-abac-4491-b792-863ab720f85c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:42:40 GMT" ] + "Date": [ "Mon, 03 Aug 2020 01:59:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+4": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -674,32 +674,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "7cb08694-ff88-49ec-a1e2-f7b847178a0a" ], - "x-ms-request-id": [ "572f54cb-e6ae-40d6-b3b7-a8f91a2e855e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], + "x-ms-request-id": [ "846bb3d4-a503-4f89-9927-f99042f79029" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144311Z:7cb08694-ff88-49ec-a1e2-f7b847178a0a" ], + "x-ms-correlation-request-id": [ "9013f9b1-a604-4fb1-a5cb-ddefad921b21" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020002Z:9013f9b1-a604-4fb1-a5cb-ddefad921b21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:43:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:00:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+5": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -715,32 +715,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "cd467640-a970-481e-b5d5-6fc5773de0b9" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "561be9c0-ac63-4b05-9812-a7b8d41bd98b" ], + "x-ms-request-id": [ "a569b546-a822-4617-980f-2f89fcab13b1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c1c18d40-a1a1-4063-a01a-0f3d44691ddd" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144341Z:c1c18d40-a1a1-4063-a01a-0f3d44691ddd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020032Z:561be9c0-ac63-4b05-9812-a7b8d41bd98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:43:41 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:00:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+6": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -756,32 +756,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "x-ms-request-id": [ "a88b9426-5624-4239-9a68-46bd7822a8b7" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "275bf58b-4753-4448-b27d-1e30def56888" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fc2518ae-4f43-4d49-8330-c98cbc27beec" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144412Z:fc2518ae-4f43-4d49-8330-c98cbc27beec" ], + "x-ms-correlation-request-id": [ "58241d95-1530-498c-9f64-abe3eb4fae10" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020103Z:58241d95-1530-498c-9f64-abe3eb4fae10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:44:11 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:01:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+7": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687", "688" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622", "623" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -797,32 +797,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "6abfdeac-4a2b-4a43-a342-3496170c6294" ], - "x-ms-request-id": [ "c7f19a31-932c-46ec-ba62-2133bee2e112" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "279" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "68258c5a-f6e2-4290-8498-c0cc989eacc3" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144442Z:6abfdeac-4a2b-4a43-a342-3496170c6294" ], + "x-ms-correlation-request-id": [ "44307025-edab-4de9-96e6-36874d260a2b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020133Z:44307025-edab-4de9-96e6-36874d260a2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:44:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:01:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+8": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687", "688", "689" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622", "623", "624" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -838,32 +838,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "cad6152e-001a-4167-adbe-b3d8822bd5e4" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "x-ms-request-id": [ "014ea3a2-8c4b-45dc-85f3-35605ea21da8" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c73aca49-6612-43a5-bab5-204e521f8800" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144512Z:c73aca49-6612-43a5-bab5-204e521f8800" ], + "x-ms-correlation-request-id": [ "ff26a8ad-0ea3-4718-a92e-c8ab7081a8e7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020204Z:ff26a8ad-0ea3-4718-a92e-c8ab7081a8e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:45:12 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:02:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+9": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687", "688", "689", "690" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622", "623", "624", "625" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -879,32 +879,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "x-ms-request-id": [ "3704a94e-876d-4fc8-b6f6-1d639fb13e6a" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "6fef360c-4ab6-4084-9afe-c1fdcb552785" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5cc509a4-6675-4106-a9b1-d526fc7be66d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144543Z:5cc509a4-6675-4106-a9b1-d526fc7be66d" ], + "x-ms-correlation-request-id": [ "ed692854-cc2e-49a8-b637-2db6e1a7ab16" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020234Z:ed692854-cc2e-49a8-b637-2db6e1a7ab16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:45:42 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:02:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+10": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687", "688", "689", "690", "691" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622", "623", "624", "625", "626" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -920,32 +920,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "dc2e3320-94e0-4fbc-9ce5-fe97a6567e6d" ], - "x-ms-request-id": [ "ea4275b9-465b-468c-a564-717a551fbce4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "10a07eaf-1da7-4cb0-827a-4026ead84efe" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144613Z:dc2e3320-94e0-4fbc-9ce5-fe97a6567e6d" ], + "x-ms-correlation-request-id": [ "a0fb6e9b-054a-4035-a0ec-6a4a8646648d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020304Z:a0fb6e9b-054a-4035-a0ec-6a4a8646648d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:46:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:03:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+11": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687", "688", "689", "690", "691", "692" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622", "623", "624", "625", "626", "627" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -961,32 +961,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "x-ms-request-id": [ "8e719adb-d32a-4602-a1e7-398b03edfba9" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "757ef4ec-7796-4d8a-828a-6401ce017bb0" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "b32fe36e-d4e6-44a6-a9aa-90f1a6ad9ae9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144644Z:b32fe36e-d4e6-44a6-a9aa-90f1a6ad9ae9" ], + "x-ms-correlation-request-id": [ "da575c31-e75b-4fd3-9eea-ba11ba925e5a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020334Z:da575c31-e75b-4fd3-9eea-ba11ba925e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:46:43 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:03:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+12": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687", "688", "689", "690", "691", "692", "693" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622", "623", "624", "625", "626", "627", "628" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1002,32 +1002,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "b3daf8a1-65a5-4f40-9fcb-ea2b0118804f" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "9e958056-844b-4315-872e-379c4fd3eb18" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "144a9fe4-3114-4f4f-b1dc-12a7f0c8fd49" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144714Z:144a9fe4-3114-4f4f-b1dc-12a7f0c8fd49" ], + "x-ms-correlation-request-id": [ "e0a3a4dc-667b-4ddd-ad9e-653ef3e6a472" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020405Z:e0a3a4dc-667b-4ddd-ad9e-653ef3e6a472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:13 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:04:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "474" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Running\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:42:12.1164373Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Running\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Running\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T01:59:04.2226111Z\",\"percentComplete\":0.5,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Running\",\"OperationState\":\"InProgress\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15+13": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5a02e569-bc0a-4e9e-8429-9870971a3159?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0ab90b30-162a-4277-912e-6809b0cf13b6?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687", "688", "689", "690", "691", "692", "693", "694" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1043,32 +1043,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "b50fb411-bf0b-4fb1-9a9a-b9217b281684" ], - "x-ms-request-id": [ "737a147f-b7e6-4fd3-bf0a-cffeb3ed8e25" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "43385ccd-b3f7-4eaa-b8ed-0c07c1232901" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144744Z:b50fb411-bf0b-4fb1-9a9a-b9217b281684" ], + "x-ms-correlation-request-id": [ "924daf0f-348c-474b-8b4e-bb31156cf4c7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020435Z:924daf0f-348c-474b-8b4e-bb31156cf4c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:44 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:04:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "478" ], + "Content-Length": [ "507" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5a02e569-bc0a-4e9e-8429-9870971a3159\",\"name\":\"5a02e569-bc0a-4e9e-8429-9870971a3159\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:42:10.6789329Z\",\"endTime\":\"2020-05-07T14:47:41.6136624Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"b96198d4-8024-4ea3-931f-5c6d65a204b9\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0ab90b30-162a-4277-912e-6809b0cf13b6\",\"name\":\"0ab90b30-162a-4277-912e-6809b0cf13b6\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T01:59:01.4254607Z\",\"endTime\":\"2020-08-03T02:04:08.7132018Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"ServiceConfigurationAlter\",\"RootActivityId\":\"4edf958e-1734-4cad-997b-3ec26341d91c\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15+14": { + "Update-AzKustoCluster+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "683", "684", "685", "686", "687", "688", "689", "690", "691", "692", "693", "694", "695" ], - "x-ms-client-request-id": [ "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35", "b6bf4329-8131-4670-8eeb-edf9d5f24b35" ], + "x-ms-unique-id": [ "618", "619", "620", "621", "622", "623", "624", "625", "626", "627", "628", "629", "630" ], + "x-ms-client-request-id": [ "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289", "45c44439-08fb-46c8-8bf4-fb5e2ff0b289" ], "CommandName": [ "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster", "Update-AzKustoCluster" ], "FullCommandName": [ "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded", "Update-AzKustoCluster_UpdateViaIdentityExpanded" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -1086,21 +1086,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "2024d65f-88a4-47b1-98d9-9fd67fe363fe" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "cee804f3-b4a6-4286-87bd-706a9a2f9bea" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5180a0e6-6623-41b5-8cdc-3e68be9437f8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144745Z:5180a0e6-6623-41b5-8cdc-3e68be9437f8" ], + "x-ms-correlation-request-id": [ "ffd64484-d6e7-4da1-9c55-d472e87a410f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020435Z:ffd64484-d6e7-4da1-9c55-d472e87a410f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:04:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "794" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"name\":\"testclusterpb8oay\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterpb8oay.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterpb8oay.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"name\":\"testclusterlbfexs\",\"type\":\"Microsoft.Kusto/Clusters\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"sku\":{\"name\":\"Standard_D11_v2\",\"tier\":\"Standard\",\"capacity\":2},\"tags\":{},\"properties\":{\"state\":\"Running\",\"stateReason\":null,\"uri\":\"https://testclusterlbfexs.eastus.kusto.windows.net\",\"dataIngestionUri\":\"https://ingest-testclusterlbfexs.eastus.kusto.windows.net\",\"trustedExternalTenants\":[],\"virtualNetworkConfiguration\":null,\"optimizedAutoscale\":null,\"enableDiskEncryption\":false,\"enableStreamingIngest\":false,\"keyVaultProperties\":null,\"languageExtensions\":{\"value\":[]},\"enablePurge\":null,\"enableDoubleEncryption\":false,\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Update-AzKustoDataConnection.Recording.json b/src/Kusto/test/Update-AzKustoDataConnection.Recording.json index 18865f01bd15..2eec1d5e82f0 100644 --- a/src/Kusto/test/Update-AzKustoDataConnection.Recording.json +++ b/src/Kusto/test/Update-AzKustoDataConnection.Recording.json @@ -1,14 +1,14 @@ { - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "430" ] + "Content-Length": [ "333" ] } }, "Response": { @@ -17,34 +17,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d64673b6-7bfb-4950-865a-0d58a233fbf1?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "f2218eb7-6f6e-4c6f-94ad-94a0a7409174" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d64673b6-7bfb-4950-865a-0d58a233fbf1?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/96d77c67-a748-44f0-a097-0fc40820d6e3?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "145b3d31-a82b-464a-a982-da9f2e664c2f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/96d77c67-a748-44f0-a097-0fc40820d6e3?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "cc2103b9-6d8a-4e90-ab13-ea051704f852" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144953Z:cc2103b9-6d8a-4e90-ab13-ea051704f852" ], + "x-ms-correlation-request-id": [ "93ca7ea2-cdc1-48b8-963b-21f3e3234c38" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020646Z:93ca7ea2-cdc1-48b8-963b-21f3e3234c38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:52 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "766" ], + "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"mappingRuleName\":\"EventsMapping1\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d64673b6-7bfb-4950-865a-0d58a233fbf1?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/96d77c67-a748-44f0-a097-0fc40820d6e3?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d64673b6-7bfb-4950-865a-0d58a233fbf1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/96d77c67-a748-44f0-a097-0fc40820d6e3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "714", "715" ], - "x-ms-client-request-id": [ "34ee3523-1457-431e-b1bc-27ea8037bf4f", "34ee3523-1457-431e-b1bc-27ea8037bf4f" ], + "x-ms-unique-id": [ "649", "650" ], + "x-ms-client-request-id": [ "3e7f83c2-a619-450c-a3a8-a23b45eff5a6", "3e7f83c2-a619-450c-a3a8-a23b45eff5a6" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -60,32 +60,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], - "x-ms-request-id": [ "7bf649b3-3deb-4d75-9e5c-adbb0cb7497a" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], + "x-ms-request-id": [ "e903e87e-1682-4104-a5d6-1ee65fc07fb6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "3ee2f77f-72cc-4956-a10b-41a086bdbc5e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145023Z:3ee2f77f-72cc-4956-a10b-41a086bdbc5e" ], + "x-ms-correlation-request-id": [ "0f6c6815-59d6-4a6c-9b63-38d722cf21fa" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020716Z:0f6c6815-59d6-4a6c-9b63-38d722cf21fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:23 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:07:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d64673b6-7bfb-4950-865a-0d58a233fbf1\",\"name\":\"d64673b6-7bfb-4950-865a-0d58a233fbf1\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:49:53.5911605Z\",\"endTime\":\"2020-05-07T14:49:57.1693085Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"f8a05124-99d9-4459-8e31-92906faf759d\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/96d77c67-a748-44f0-a097-0fc40820d6e3\",\"name\":\"96d77c67-a748-44f0-a097-0fc40820d6e3\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:06:45.9943391Z\",\"endTime\":\"2020-08-03T02:06:48.5883448Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "714", "715", "716" ], - "x-ms-client-request-id": [ "34ee3523-1457-431e-b1bc-27ea8037bf4f", "34ee3523-1457-431e-b1bc-27ea8037bf4f", "34ee3523-1457-431e-b1bc-27ea8037bf4f" ], + "x-ms-unique-id": [ "649", "650", "651" ], + "x-ms-client-request-id": [ "3e7f83c2-a619-450c-a3a8-a23b45eff5a6", "3e7f83c2-a619-450c-a3a8-a23b45eff5a6", "3e7f83c2-a619-450c-a3a8-a23b45eff5a6" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -103,33 +103,33 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "f051bc39-b214-491d-8f1d-d99b5a20c432" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "4766c3fb-005b-4b58-b0c3-c6cfbef45a27" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "37fadfc9-f1ec-481c-b338-86e70b044a8b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145024Z:37fadfc9-f1ec-481c-b338-86e70b044a8b" ], + "x-ms-correlation-request-id": [ "434ce6fa-2cfd-430c-931f-75d27910cd03" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020716Z:434ce6fa-2cfd-430c-931f-75d27910cd03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:07:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "794" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "585" ] + "Content-Length": [ "488" ] } }, "Response": { @@ -138,34 +138,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d4abe85b-7d1d-40a3-b02d-47a5ecf398d1?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "3501a690-6543-4c5c-8c53-09993b986983" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d4abe85b-7d1d-40a3-b02d-47a5ecf398d1?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0f64297c-f922-4b5f-ab11-e61421cd25b9?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "dfbd7e95-6ed4-42d7-921f-f85a967fd4c5" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0f64297c-f922-4b5f-ab11-e61421cd25b9?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "ad7484f8-3550-4cdf-ad10-46b8977ac9bb" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145024Z:ad7484f8-3550-4cdf-ad10-46b8977ac9bb" ], + "x-ms-correlation-request-id": [ "55b694ef-d561-4ba5-9d1e-1a222de1f283" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020717Z:55b694ef-d561-4ba5-9d1e-1a222de1f283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:24 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:07:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "847" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\"mappingRuleName\":\"EventsMapping1\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d4abe85b-7d1d-40a3-b02d-47a5ecf398d1?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0f64297c-f922-4b5f-ab11-e61421cd25b9?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d4abe85b-7d1d-40a3-b02d-47a5ecf398d1?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0f64297c-f922-4b5f-ab11-e61421cd25b9?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "717", "718" ], - "x-ms-client-request-id": [ "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05", "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05" ], + "x-ms-unique-id": [ "652", "653" ], + "x-ms-client-request-id": [ "39472226-e662-4273-bd36-948771accbde", "39472226-e662-4273-bd36-948771accbde" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -181,32 +181,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a76e2543-c330-47d5-9e0f-b8b17149b470" ], - "x-ms-request-id": [ "51fd8630-6e5b-4bb8-a53b-7057379abf1e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], + "x-ms-request-id": [ "43d06002-5fff-41a9-a10c-018cedd15c13" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145055Z:a76e2543-c330-47d5-9e0f-b8b17149b470" ], + "x-ms-correlation-request-id": [ "249494af-1479-4f2a-bdad-5a79e2f44af5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020747Z:249494af-1479-4f2a-bdad-5a79e2f44af5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:54 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:07:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "489" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d4abe85b-7d1d-40a3-b02d-47a5ecf398d1\",\"name\":\"d4abe85b-7d1d-40a3-b02d-47a5ecf398d1\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:50:24.7666221Z\",\"endTime\":\"2020-05-07T14:50:29.0371586Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"c3929af7-589c-42ad-b59f-cc23f4ed51bd\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0f64297c-f922-4b5f-ab11-e61421cd25b9\",\"name\":\"0f64297c-f922-4b5f-ab11-e61421cd25b9\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:07:17.4705436Z\",\"endTime\":\"2020-08-03T02:07:21.1426983Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "717", "718", "719" ], - "x-ms-client-request-id": [ "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05", "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05", "bb10fec3-a3b2-49e2-8cb9-ead5d265ef05" ], + "x-ms-unique-id": [ "652", "653", "654" ], + "x-ms-client-request-id": [ "39472226-e662-4273-bd36-948771accbde", "39472226-e662-4273-bd36-948771accbde", "39472226-e662-4273-bd36-948771accbde" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -224,33 +224,33 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "27d4faa1-6ac0-48b3-8d54-3d659fd982cc" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "38db2660-83a9-4cc1-9185-af46ff6ab165" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "52117bd2-1a7a-4765-bfcf-03acd9fbf1e1" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145055Z:52117bd2-1a7a-4765-bfcf-03acd9fbf1e1" ], + "x-ms-correlation-request-id": [ "87857f26-972b-4d9d-ac32-bb8ca9d8143c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020748Z:87857f26-972b-4d9d-ac32-bb8ca9d8143c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:07:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "924" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping1\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\r\n \"sharedAccessPolicyName\": \"registryRead\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "412" ] + "Content-Length": [ "315" ] } }, "Response": { @@ -259,34 +259,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d507178f-88ef-4f52-a916-e46710152c2f?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "c3bbd1da-5579-414f-af7b-08da12d1b13a" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d507178f-88ef-4f52-a916-e46710152c2f?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/46a5a042-b5b5-4740-9b7f-97ac73e48f4c?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "dbda5219-96ec-46f6-96b3-de15455312d4" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/46a5a042-b5b5-4740-9b7f-97ac73e48f4c?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "197" ], - "x-ms-correlation-request-id": [ "4acd9292-2f46-4cca-a63e-b68c7da4de0f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145056Z:4acd9292-2f46-4cca-a63e-b68c7da4de0f" ], + "x-ms-correlation-request-id": [ "aa046aff-77f9-412d-a41e-9d3dd52e1bf5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020749Z:aa046aff-77f9-412d-a41e-9d3dd52e1bf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:50:55 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:07:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "750" ], + "Content-Length": [ "674" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\"mappingRuleName\":\"EventsMapping1\",\"sharedAccessPolicyName\":\"registryRead\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/d507178f-88ef-4f52-a916-e46710152c2f?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/46a5a042-b5b5-4740-9b7f-97ac73e48f4c?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/d507178f-88ef-4f52-a916-e46710152c2f?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/46a5a042-b5b5-4740-9b7f-97ac73e48f4c?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "720", "721" ], - "x-ms-client-request-id": [ "8ff496b8-49cc-4d74-b8f0-0fcb72d1521e", "8ff496b8-49cc-4d74-b8f0-0fcb72d1521e" ], + "x-ms-unique-id": [ "655", "656" ], + "x-ms-client-request-id": [ "569ed5ea-e68a-40c4-a1ed-f3000047f517", "569ed5ea-e68a-40c4-a1ed-f3000047f517" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -302,32 +302,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], - "x-ms-request-id": [ "4c7ce609-7fbf-46bd-a57f-b55911f58438" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], + "x-ms-request-id": [ "091b84a5-c3e7-4cfa-8b46-3d3d80238a91" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "212ce2c0-cb97-41b7-a3fd-0997ec799ee9" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145126Z:212ce2c0-cb97-41b7-a3fd-0997ec799ee9" ], + "x-ms-correlation-request-id": [ "ee8361c0-b595-4413-b1a5-834e7d34bfc6" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020819Z:ee8361c0-b595-4413-b1a5-834e7d34bfc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:25 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/d507178f-88ef-4f52-a916-e46710152c2f\",\"name\":\"d507178f-88ef-4f52-a916-e46710152c2f\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:50:56.3222632Z\",\"endTime\":\"2020-05-07T14:50:56.6503941Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"0fcfcbe5-8861-4c7f-b986-18afa06cda7c\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/46a5a042-b5b5-4740-9b7f-97ac73e48f4c\",\"name\":\"46a5a042-b5b5-4740-9b7f-97ac73e48f4c\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:07:49.0922345Z\",\"endTime\":\"2020-08-03T02:07:49.4203933Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "720", "721", "722" ], - "x-ms-client-request-id": [ "8ff496b8-49cc-4d74-b8f0-0fcb72d1521e", "8ff496b8-49cc-4d74-b8f0-0fcb72d1521e", "8ff496b8-49cc-4d74-b8f0-0fcb72d1521e" ], + "x-ms-unique-id": [ "655", "656", "657" ], + "x-ms-client-request-id": [ "569ed5ea-e68a-40c4-a1ed-f3000047f517", "569ed5ea-e68a-40c4-a1ed-f3000047f517", "569ed5ea-e68a-40c4-a1ed-f3000047f517" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update", "Update-AzKustoDataConnection_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -345,31 +345,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "0a349de0-4aba-4917-83f0-459999264de7" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "2b6fcace-b186-4f60-9861-2090ba278adb" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "e56f0657-d3d3-4899-b85b-e201aa76514d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145127Z:e56f0657-d3d3-4899-b85b-e201aa76514d" ], + "x-ms-correlation-request-id": [ "ef636559-6156-4f62-9afe-5411191c33ac" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020820Z:ef636559-6156-4f62-9afe-5411191c33ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:26 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "778" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "723" ], - "x-ms-client-request-id": [ "4d2944b5-bb4e-421b-9f13-128505379a0e" ], + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "ffc4c05f-0bb2-4620-bb1c-0760f4e6adcd" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -387,33 +387,33 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "e543079b-76a9-461f-b9a8-6165161e7ce6" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "246d48d4-83e2-4f79-a9f4-c8d7801ba5a2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4bb581f3-16dc-47b5-9c47-d8e64e2d9a83" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145127Z:4bb581f3-16dc-47b5-9c47-d8e64e2d9a83" ], + "x-ms-correlation-request-id": [ "3ac1e8c5-be11-4e09-8016-520af22faeaf" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020820Z:3ac1e8c5-be11-4e09-8016-520af22faeaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:26 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "794" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"EventHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"compression\": \"None\",\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "429" ] + "Content-Length": [ "333" ] } }, "Response": { @@ -422,34 +422,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/22abfb7a-34cb-4f74-8615-d5f1bc2a2c81?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "b7a631ad-c636-49e8-96f0-2f22bbde910e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/22abfb7a-34cb-4f74-8615-d5f1bc2a2c81?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/57b04bb4-d8fc-4fcc-9571-2ae8f307613d?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "4801b599-01f8-4edf-99ea-ae7a948685b6" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/57b04bb4-d8fc-4fcc-9571-2ae8f307613d?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], - "x-ms-correlation-request-id": [ "760d534e-72a4-4009-8933-dfa14ac491aa" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145127Z:760d534e-72a4-4009-8933-dfa14ac491aa" ], + "x-ms-correlation-request-id": [ "7e6b9195-19b6-4d97-9d2a-ddb89d1513d2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020821Z:7e6b9195-19b6-4d97-9d2a-ddb89d1513d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:27 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "765" ], + "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"mappingRuleName\":\"EventsMapping\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"compression\":\"None\",\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/22abfb7a-34cb-4f74-8615-d5f1bc2a2c81?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/57b04bb4-d8fc-4fcc-9571-2ae8f307613d?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/22abfb7a-34cb-4f74-8615-d5f1bc2a2c81?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/57b04bb4-d8fc-4fcc-9571-2ae8f307613d?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "724", "725" ], - "x-ms-client-request-id": [ "9fb36a05-1fd3-4e78-8352-0f4c8e5d96d6", "9fb36a05-1fd3-4e78-8352-0f4c8e5d96d6" ], + "x-ms-unique-id": [ "659", "660" ], + "x-ms-client-request-id": [ "0ee29084-0498-42f3-9e86-10182e317466", "0ee29084-0498-42f3-9e86-10182e317466" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -465,32 +465,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "a7e904da-c14b-4198-ac16-5a7fd6c2ff43" ], - "x-ms-request-id": [ "69d0b143-5f81-4adf-8f96-b93f7eca5d2a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], + "x-ms-request-id": [ "6f71c4b7-be7e-49ff-a429-09f2756d83ed" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145158Z:a7e904da-c14b-4198-ac16-5a7fd6c2ff43" ], + "x-ms-correlation-request-id": [ "553449ec-e1b7-4d41-9d8e-916cecd17f46" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020851Z:553449ec-e1b7-4d41-9d8e-916cecd17f46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:57 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/22abfb7a-34cb-4f74-8615-d5f1bc2a2c81\",\"name\":\"22abfb7a-34cb-4f74-8615-d5f1bc2a2c81\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:51:27.8587066Z\",\"endTime\":\"2020-05-07T14:51:31.0618161Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"633a95d0-22d2-4ffd-98cd-eae709f311bc\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/57b04bb4-d8fc-4fcc-9571-2ae8f307613d\",\"name\":\"57b04bb4-d8fc-4fcc-9571-2ae8f307613d\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:08:21.0630901Z\",\"endTime\":\"2020-08-03T02:08:23.3757689Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15+4": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "724", "725", "726" ], - "x-ms-client-request-id": [ "9fb36a05-1fd3-4e78-8352-0f4c8e5d96d6", "9fb36a05-1fd3-4e78-8352-0f4c8e5d96d6", "9fb36a05-1fd3-4e78-8352-0f4c8e5d96d6" ], + "x-ms-unique-id": [ "659", "660", "661" ], + "x-ms-client-request-id": [ "0ee29084-0498-42f3-9e86-10182e317466", "0ee29084-0498-42f3-9e86-10182e317466", "0ee29084-0498-42f3-9e86-10182e317466" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -508,31 +508,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-request-id": [ "f5333100-6d01-4272-857a-26c7de267139" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "e196ee30-8694-4d7e-ae16-5b40b846c2d6" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0e2ac0c6-6d60-4a7d-b15e-a2347faf3ac8" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145158Z:0e2ac0c6-6d60-4a7d-b15e-a2347faf3ac8" ], + "x-ms-correlation-request-id": [ "9459b2ee-22d5-4681-95a4-7ac7ee4c8c94" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020851Z:9459b2ee-22d5-4681-95a4-7ac7ee4c8c94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:58 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "793" ], + "Content-Length": [ "776" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnspb8oay/eventhubs/eventhubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventHub\",\"tags\":{},\"properties\":{\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnslbfexs/eventhubs/eventhublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"compression\":\"None\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "727" ], - "x-ms-client-request-id": [ "bcf0cdd0-094f-47e9-9ab2-6a00da0f5a5a" ], + "x-ms-unique-id": [ "662" ], + "x-ms-client-request-id": [ "35eda697-8844-4c39-bb22-87b8e4e3ad96" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -550,33 +550,33 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], - "x-ms-request-id": [ "914689f0-8afe-496a-96d8-a64b15d78bcc" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "97b9eb22-f1f7-4231-b4fe-4eedd3abad1d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "712ad32c-36ab-4001-a763-a814491446a7" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145159Z:712ad32c-36ab-4001-a763-a814491446a7" ], + "x-ms-correlation-request-id": [ "e374ffa6-5698-4b24-82fe-f08546358d7c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020852Z:e374ffa6-5698-4b24-82fe-f08546358d7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "924" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"EventGrid\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"eventHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\r\n \"storageAccountResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "584" ] + "Content-Length": [ "488" ] } }, "Response": { @@ -585,34 +585,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b9f2f69c-b869-4f46-a60c-c554b2fd5f9d?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "53c5c52e-0dff-41e1-8ee7-a7ea8069abe1" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b9f2f69c-b869-4f46-a60c-c554b2fd5f9d?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f867cb52-368b-437a-a103-28a0fb506c7a?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "e1d68eee-ea3f-4e94-b8e5-4a9f2c332e59" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f867cb52-368b-437a-a103-28a0fb506c7a?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "195" ], - "x-ms-correlation-request-id": [ "4497743a-14d5-4393-8ab8-68352b73514f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145159Z:4497743a-14d5-4393-8ab8-68352b73514f" ], + "x-ms-correlation-request-id": [ "b9665be1-0438-4a54-a47c-d046651e82bd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020853Z:b9665be1-0438-4a54-a47c-d046651e82bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:51:59 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:08:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "922" ], + "Content-Length": [ "847" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\"mappingRuleName\":\"EventsMapping\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/b9f2f69c-b869-4f46-a60c-c554b2fd5f9d?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/f867cb52-368b-437a-a103-28a0fb506c7a?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/b9f2f69c-b869-4f46-a60c-c554b2fd5f9d?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/f867cb52-368b-437a-a103-28a0fb506c7a?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "728", "729" ], - "x-ms-client-request-id": [ "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c", "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c" ], + "x-ms-unique-id": [ "663", "664" ], + "x-ms-client-request-id": [ "bcaf4b6f-303a-4aaa-afd5-3b7fbe88e386", "bcaf4b6f-303a-4aaa-afd5-3b7fbe88e386" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -628,32 +628,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "285" ], - "x-ms-request-id": [ "fa290171-c055-46ff-96eb-2949a0713594" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], + "x-ms-request-id": [ "3cb20928-768a-4e06-903b-803dbd9fe934" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "32e71816-e219-443f-bb21-8b0b93586a78" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145230Z:32e71816-e219-443f-bb21-8b0b93586a78" ], + "x-ms-correlation-request-id": [ "809a0c76-e4f5-4982-8d02-82fcb0b3355a" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020923Z:809a0c76-e4f5-4982-8d02-82fcb0b3355a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:52:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:09:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "489" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/b9f2f69c-b869-4f46-a60c-c554b2fd5f9d\",\"name\":\"b9f2f69c-b869-4f46-a60c-c554b2fd5f9d\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:51:59.7973757Z\",\"endTime\":\"2020-05-07T14:52:03.1431114Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventGridIngestionSourceAdd\",\"RootActivityId\":\"8ce37ef9-e325-4b7f-9475-bb6913c52a40\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/f867cb52-368b-437a-a103-28a0fb506c7a\",\"name\":\"f867cb52-368b-437a-a103-28a0fb506c7a\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:08:53.0565133Z\",\"endTime\":\"2020-08-03T02:08:56.7082658Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15+4": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedEventGrid+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "728", "729", "730" ], - "x-ms-client-request-id": [ "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c", "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c", "f72c80e2-2a4b-4315-9788-4e8cbcf99c4c" ], + "x-ms-unique-id": [ "663", "664", "665" ], + "x-ms-client-request-id": [ "bcaf4b6f-303a-4aaa-afd5-3b7fbe88e386", "bcaf4b6f-303a-4aaa-afd5-3b7fbe88e386", "bcaf4b6f-303a-4aaa-afd5-3b7fbe88e386" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -671,31 +671,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-request-id": [ "d36af2d2-2320-4de3-a278-bc556f510fac" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "7400b14a-5669-4f48-a43b-c0589f98e015" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "5d0d2057-544f-40f0-9c16-636fededfa1e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145230Z:5d0d2057-544f-40f0-9c16-636fededfa1e" ], + "x-ms-correlation-request-id": [ "8681e0a2-0ed9-40d7-9bb4-2f2534fddf76" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020924Z:8681e0a2-0ed9-40d7-9bb4-2f2534fddf76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:52:29 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:09:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayg\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Storage/storageAccounts/storagepb8oay\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.EventHub/namespaces/eventhubnsgrid25n9il/eventhubs/eventgrid25n9il\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsg\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsg\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"EventGrid\",\"tags\":{},\"properties\":{\"storageAccountResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Storage/storageAccounts/storagelbfexs\",\"eventHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.EventHub/namespaces/eventhubnsgridbgiwc7/eventhubs/eventgridbgiwc7\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"blobStorageEventType\":null,\"ignoreFirstRecord\":false,\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15+1": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "731" ], - "x-ms-client-request-id": [ "b4b50f60-b0c4-436b-85c5-60113293a7c1" ], + "x-ms-unique-id": [ "666" ], + "x-ms-client-request-id": [ "d65f3a52-8f89-49cb-8991-09bb5fb6c1a9" ], "CommandName": [ "Get-AzKustoDataConnection" ], "FullCommandName": [ "Get-AzKustoDataConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -713,33 +713,33 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-request-id": [ "b6b68dd6-46ab-4f95-ad47-6f97aa18aa5b" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "3b11ce74-433f-492e-8297-703b9c1354e5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "bbca11e8-ae3b-4b90-84c7-6c0f58739e5b" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145230Z:bbca11e8-ae3b-4b90-84c7-6c0f58739e5b" ], + "x-ms-correlation-request-id": [ "167fcdac-a663-47f4-8ee2-49a7ff0e63cb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020924Z:167fcdac-a663-47f4-8ee2-49a7ff0e63cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:52:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:09:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "778" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping1\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15+2": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15", - "Content": "{\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"dataFormat\": \"JSON\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\r\n \"mappingRuleName\": \"EventsMapping\",\r\n \"sharedAccessPolicyName\": \"registryRead\",\r\n \"tableName\": \"Events\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", + "Content": "{\r\n \"kind\": \"IotHub\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"consumerGroup\": \"$Default\",\r\n \"iotHubResourceId\": \"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\r\n \"sharedAccessPolicyName\": \"registryRead\"\r\n }\r\n}", "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "411" ] + "Content-Length": [ "315" ] } }, "Response": { @@ -748,34 +748,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/aab8722c-d927-4a1c-9117-73b02b0c4de5?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "641b06a7-340c-46e9-83c0-7f7d5618b146" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/aab8722c-d927-4a1c-9117-73b02b0c4de5?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/74ac0ab4-10dd-43fd-8c55-9d7419951095?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "a2df2ba1-d5fa-4ed2-bcfb-178f5a37dd22" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/74ac0ab4-10dd-43fd-8c55-9d7419951095?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "194" ], - "x-ms-correlation-request-id": [ "d44c0917-e7b3-472f-9319-d3b14bbb0489" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145231Z:d44c0917-e7b3-472f-9319-d3b14bbb0489" ], + "x-ms-correlation-request-id": [ "9c35899d-b9fe-4b73-9677-90383d3f722d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020925Z:9c35899d-b9fe-4b73-9677-90383d3f722d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:52:30 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:09:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "749" ], + "Content-Length": [ "674" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"dataFormat\":\"JSON\",\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\"mappingRuleName\":\"EventsMapping\",\"sharedAccessPolicyName\":\"registryRead\",\"tableName\":\"Events\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"consumerGroup\":\"$Default\",\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/aab8722c-d927-4a1c-9117-73b02b0c4de5?api-version=2020-02-15+3": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/74ac0ab4-10dd-43fd-8c55-9d7419951095?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/aab8722c-d927-4a1c-9117-73b02b0c4de5?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/74ac0ab4-10dd-43fd-8c55-9d7419951095?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "732", "733" ], - "x-ms-client-request-id": [ "aaac9c47-4902-4f9a-b428-b0ea86b4b3ee", "aaac9c47-4902-4f9a-b428-b0ea86b4b3ee" ], + "x-ms-unique-id": [ "667", "668" ], + "x-ms-client-request-id": [ "19498a8d-1b2c-466f-a291-dcde9c2d6bcd", "19498a8d-1b2c-466f-a291-dcde9c2d6bcd" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -791,32 +791,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "2ba6fba9-5fba-41d3-9c4c-5fb6cd52c56c" ], - "x-ms-request-id": [ "aa6c1e3f-6071-4058-a8ed-e52d5048c3bc" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "284" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], + "x-ms-request-id": [ "1334a49e-0c07-4bbd-9dbb-808294a71a8a" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145301Z:2ba6fba9-5fba-41d3-9c4c-5fb6cd52c56c" ], + "x-ms-correlation-request-id": [ "68a66769-546f-4bfe-b2ab-510440f06191" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020956Z:68a66769-546f-4bfe-b2ab-510440f06191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:53:01 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:09:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "481" ], + "Content-Length": [ "347" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/aab8722c-d927-4a1c-9117-73b02b0c4de5\",\"name\":\"aab8722c-d927-4a1c-9117-73b02b0c4de5\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:52:31.4017133Z\",\"endTime\":\"2020-05-07T14:52:31.7454584Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DmServiceEventHubObtainerAdd\",\"RootActivityId\":\"bf177497-33f7-4371-a16d-2eef14726eeb\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/74ac0ab4-10dd-43fd-8c55-9d7419951095\",\"name\":\"74ac0ab4-10dd-43fd-8c55-9d7419951095\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:09:25.5993559Z\",\"endTime\":\"2020-08-03T02:09:25.9274932Z\",\"percentComplete\":1.0,\"properties\":{}}" } }, - "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15+4": { + "Update-AzKustoDataConnection+[NoContext]+UpdateViaIdentityExpandedIotHub+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "732", "733", "734" ], - "x-ms-client-request-id": [ "aaac9c47-4902-4f9a-b428-b0ea86b4b3ee", "aaac9c47-4902-4f9a-b428-b0ea86b4b3ee", "aaac9c47-4902-4f9a-b428-b0ea86b4b3ee" ], + "x-ms-unique-id": [ "667", "668", "669" ], + "x-ms-client-request-id": [ "19498a8d-1b2c-466f-a291-dcde9c2d6bcd", "19498a8d-1b2c-466f-a291-dcde9c2d6bcd", "19498a8d-1b2c-466f-a291-dcde9c2d6bcd" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection", "Az.Kusto.internal\\Update-AzKustoDataConnection" ], "FullCommandName": [ "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity", "Update-AzKustoDataConnection_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -834,21 +834,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], - "x-ms-request-id": [ "41f60c57-c8f9-46b0-9add-f769f65ce1dc" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "2c6f9925-1ca1-4e59-b31c-db45d051c2d9" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "fc7dd0e7-d6c2-49df-ae84-3e339a9f6862" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T145302Z:fc7dd0e7-d6c2-49df-ae84-3e339a9f6862" ], + "x-ms-correlation-request-id": [ "2f0aa4ab-a1e0-4642-86b9-bb43b587bf56" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020957Z:2f0aa4ab-a1e0-4642-86b9-bb43b587bf56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:53:02 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:09:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "777" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay/DataConnections/testdataconnectionpb8oayh\",\"name\":\"testclusterpb8oay/testdatabasepb8oay/testdataconnectionpb8oayh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouppb8oay/providers/Microsoft.Devices/IotHubs/iothubpb8oay\",\"consumerGroup\":\"$Default\",\"tableName\":\"Events\",\"mappingRuleName\":\"EventsMapping\",\"dataFormat\":\"JSON\",\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs/DataConnections/testdataconnectionlbfexsh\",\"name\":\"testclusterlbfexs/testdatabaselbfexs/testdataconnectionlbfexsh\",\"type\":\"Microsoft.Kusto/Clusters/Databases/DataConnections\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"IotHub\",\"tags\":{},\"properties\":{\"iotHubResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourcegroups/testgrouplbfexs/providers/Microsoft.Devices/IotHubs/iothublbfexs\",\"consumerGroup\":\"$Default\",\"tableName\":null,\"mappingRuleName\":null,\"dataFormat\":null,\"eventSystemProperties\":[],\"sharedAccessPolicyName\":\"registryRead\",\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/Update-AzKustoDataConnection.Tests.ps1 b/src/Kusto/test/Update-AzKustoDataConnection.Tests.ps1 index dae5c4156864..d3e194ba7188 100644 --- a/src/Kusto/test/Update-AzKustoDataConnection.Tests.ps1 +++ b/src/Kusto/test/Update-AzKustoDataConnection.Tests.ps1 @@ -24,14 +24,11 @@ Describe 'Update-AzKustoDataConnection' { $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName + "1" - $dataFormat = $env.dataFormat $kind = "EventHub" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" - $dataConnectionUpdated = Update-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $tableName -MappingRuleName $tableMappingName - Validate_EventHubDataConnection $dataConnectionUpdated $dataConnectionFullName $location $eventHubResourceId $tableName $tableMappingName $dataFormat $kind + $dataConnectionUpdated = Update-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" + Validate_EventHubDataConnection $dataConnectionUpdated $dataConnectionFullName $location $eventHubResourceId $kind } It 'UpdateExpandedEventGrid' { @@ -46,14 +43,11 @@ Describe 'Update-AzKustoDataConnection' { $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" $storageAccountName = $env.storageName $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageAccountName" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName + "1" - $dataFormat = $env.dataFormat $kind = "EventGrid" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" - $dataConnectionUpdated = Update-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - Validate_EventGridDataConnection $dataConnectionUpdated $dataConnectionFullName $location $eventHubResourceId $storageAccountResourceId $tableName $tableMappingName $dataFormat $kind + $dataConnectionUpdated = Update-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' + Validate_EventGridDataConnection $dataConnectionUpdated $dataConnectionFullName $location $eventHubResourceId $storageAccountResourceId $kind } It 'UpdateExpandedIotHub' { @@ -66,14 +60,11 @@ Describe 'Update-AzKustoDataConnection' { $iothubName = $env.iothubName $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" $sharedAccessPolicyName = $env.iothubSharedAccessPolicyName - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName + "1" - $dataFormat = $env.dataFormat $kind = "IotHub" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" - $dataConnectionUpdated = Update-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - Validate_IotHubDataConnection $dataConnectionUpdated $dataConnectionFullName $location $iotHubResourceId $sharedAccessPolicyName $tableName $tableMappingName $dataFormat $kind + $dataConnectionUpdated = Update-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' + Validate_IotHubDataConnection $dataConnectionUpdated $dataConnectionFullName $location $iotHubResourceId $sharedAccessPolicyName $kind } It 'UpdateViaIdentityExpandedEventHub' { @@ -86,15 +77,12 @@ Describe 'Update-AzKustoDataConnection' { $eventhubNS = $env.eventhubNSName $eventhub = $env.eventhubName $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventHub" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" $dataConnection = Get-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Name $dataConnectionName - $dataConnectionUpdated = Update-AzKustoDataConnection -InputObject $dataConnection -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $tableName -MappingRuleName $tableMappingName - Validate_EventHubDataConnection $dataConnectionUpdated $dataConnectionFullName $location $eventHubResourceId $tableName $tableMappingName $dataFormat $kind + $dataConnectionUpdated = Update-AzKustoDataConnection -InputObject $dataConnection -Location $location -Kind $kind -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" + Validate_EventHubDataConnection $dataConnectionUpdated $dataConnectionFullName $location $eventHubResourceId $kind } It 'UpdateViaIdentityExpandedEventGrid' { @@ -109,15 +97,12 @@ Describe 'Update-AzKustoDataConnection' { $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNS/eventhubs/$eventhub" $storageAccountName = $env.storageName $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageAccountName" - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "EventGrid" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" $dataConnection = Get-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Name $dataConnectionName - $dataConnectionUpdated = Update-AzKustoDataConnection -InputObject $dataConnection -location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - Validate_EventGridDataConnection $dataConnectionUpdated $dataConnectionFullName $location $eventHubResourceId $storageAccountResourceId $tableName $tableMappingName $dataFormat $kind + $dataConnectionUpdated = Update-AzKustoDataConnection -InputObject $dataConnection -location $location -Kind $kind -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' + Validate_EventGridDataConnection $dataConnectionUpdated $dataConnectionFullName $location $eventHubResourceId $storageAccountResourceId $kind } It 'UpdateViaIdentityExpandedIotHub' { @@ -130,14 +115,11 @@ Describe 'Update-AzKustoDataConnection' { $iothubName = $env.iothubName $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" $sharedAccessPolicyName = $env.iothubSharedAccessPolicyName - $tableName = $env.tableName - $tableMappingName = $env.tableMappingName - $dataFormat = $env.dataFormat $kind = "IotHub" $dataConnectionFullName = "$clusterName/$databaseName/$dataConnectionName" $dataConnection = Get-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -Name $dataConnectionName - $dataConnectionUpdated = Update-AzKustoDataConnection -InputObject $dataConnection -location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -DataFormat $dataFormat -ConsumerGroup '$Default' -TableName $tableName -MappingRuleName $tableMappingName - Validate_IotHubDataConnection $dataConnectionUpdated $dataConnectionFullName $location $iotHubResourceId $sharedAccessPolicyName $tableName $tableMappingName $dataFormat $kind + $dataConnectionUpdated = Update-AzKustoDataConnection -InputObject $dataConnection -location $location -Kind $kind -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $sharedAccessPolicyName -ConsumerGroup '$Default' + Validate_IotHubDataConnection $dataConnectionUpdated $dataConnectionFullName $location $iotHubResourceId $sharedAccessPolicyName $kind } } diff --git a/src/Kusto/test/Update-AzKustoDatabase.Recording.json b/src/Kusto/test/Update-AzKustoDatabase.Recording.json index 283aae0a0018..56d9abc0022c 100644 --- a/src/Kusto/test/Update-AzKustoDatabase.Recording.json +++ b/src/Kusto/test/Update-AzKustoDatabase.Recording.json @@ -1,12 +1,12 @@ { - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "696" ], - "x-ms-client-request-id": [ "af55fdf1-0ae3-4908-97de-bc8d043ee7b7" ], + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "ce9b4184-d26e-4e4f-b6e1-a71b64901d2f" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -24,27 +24,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "299" ], - "x-ms-request-id": [ "3b473a98-fc1d-45fd-89b0-c18043902375" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "2fe67895-fce6-42f0-a27d-8805b96d9d47" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "9798cc65-3e1b-4e4e-aebf-78177ac344dc" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144745Z:9798cc65-3e1b-4e4e-aebf-78177ac344dc" ], + "x-ms-correlation-request-id": [ "58ddff3d-de93-4e58-bad2-4faf1c2a521e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020436Z:58ddff3d-de93-4e58-bad2-4faf1c2a521e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:45 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:04:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+2": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P3D\",\r\n \"softDeletePeriod\": \"P5D\"\r\n }\r\n}", "Headers": { }, @@ -59,34 +59,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/59700915-88ae-469a-81e4-83c9fbd7114b?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "20d39263-819c-4bd0-93e1-3e9159235f47" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/59700915-88ae-469a-81e4-83c9fbd7114b?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/67faf98e-a847-4339-b5cb-60608ed4f128?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "fd0eee82-96c2-44c3-aba8-5936adbe85ee" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/67faf98e-a847-4339-b5cb-60608ed4f128?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], - "x-ms-correlation-request-id": [ "2997dba6-f06f-421c-8f1a-cb742be14281" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144746Z:2997dba6-f06f-421c-8f1a-cb742be14281" ], + "x-ms-correlation-request-id": [ "7d51664c-8a2e-4e57-98b6-53c2956401f1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020436Z:7d51664c-8a2e-4e57-98b6-53c2956401f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:47:46 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:04:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P3D\",\"softDeletePeriod\":\"P5D\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P3D\",\"softDeletePeriod\":\"P5D\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/59700915-88ae-469a-81e4-83c9fbd7114b?api-version=2020-02-15+3": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/67faf98e-a847-4339-b5cb-60608ed4f128?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/59700915-88ae-469a-81e4-83c9fbd7114b?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/67faf98e-a847-4339-b5cb-60608ed4f128?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "697", "698" ], - "x-ms-client-request-id": [ "cd8ac50b-e7b4-4395-b49e-8939d44806e4", "cd8ac50b-e7b4-4395-b49e-8939d44806e4" ], + "x-ms-unique-id": [ "632", "633" ], + "x-ms-client-request-id": [ "4ae0a9ab-49d3-4b3f-a522-9b633675a82d", "4ae0a9ab-49d3-4b3f-a522-9b633675a82d" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_Update", "Update-AzKustoDatabase_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -102,32 +102,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "283" ], - "x-ms-request-id": [ "c38410b0-0a22-4068-914f-79c99b3fde22" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "289" ], + "x-ms-request-id": [ "b4f3f3c5-f6ac-4060-bd9a-90a19a0bfa65" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "1f25c00c-b280-4407-af87-917dc7d6a561" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144816Z:1f25c00c-b280-4407-af87-917dc7d6a561" ], + "x-ms-correlation-request-id": [ "7e214ed5-a0da-4f33-9b61-e721b51479f7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020507Z:7e214ed5-a0da-4f33-9b61-e721b51479f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/59700915-88ae-469a-81e4-83c9fbd7114b\",\"name\":\"59700915-88ae-469a-81e4-83c9fbd7114b\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:47:46.3019626Z\",\"endTime\":\"2020-05-07T14:47:51.1844372Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"f3abcd02-7766-4a72-9272-cf3745e18fa6\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/67faf98e-a847-4339-b5cb-60608ed4f128\",\"name\":\"67faf98e-a847-4339-b5cb-60608ed4f128\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:04:36.7496228Z\",\"endTime\":\"2020-08-03T02:04:39.4533059Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"43f1494d-e579-4bb9-84f0-26e34f737d27\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+4": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "697", "698", "699" ], - "x-ms-client-request-id": [ "cd8ac50b-e7b4-4395-b49e-8939d44806e4", "cd8ac50b-e7b4-4395-b49e-8939d44806e4", "cd8ac50b-e7b4-4395-b49e-8939d44806e4" ], + "x-ms-unique-id": [ "632", "633", "634" ], + "x-ms-client-request-id": [ "4ae0a9ab-49d3-4b3f-a522-9b633675a82d", "4ae0a9ab-49d3-4b3f-a522-9b633675a82d", "4ae0a9ab-49d3-4b3f-a522-9b633675a82d" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_Update", "Update-AzKustoDatabase_Update", "Update-AzKustoDatabase_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -145,31 +145,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "298" ], - "x-ms-request-id": [ "4b25700f-48de-45c8-93cd-6e05fc81c446" ], - "Set-Cookie": [ "ARRAffinity=45a681946f8516d6f247ca52dbd9b9d9dd03f3201a06a51d7228783348bb956f;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "f1276688-7ce3-4143-92fa-d44345d2c28e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "22f73adf-a76d-45f0-aea4-cf20bab99239" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144816Z:22f73adf-a76d-45f0-aea4-cf20bab99239" ], + "x-ms-correlation-request-id": [ "d30d6ef7-581c-4e2d-ab2d-016f1acad134" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020507Z:d30d6ef7-581c-4e2d-ab2d-016f1acad134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "700" ], - "x-ms-client-request-id": [ "c06b6902-6bbb-4736-a5d7-7ea8a8181e2a" ], + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "e846055a-af0a-40fa-bc96-ec8241696215" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -187,27 +187,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "297" ], - "x-ms-request-id": [ "cfbb6794-c75c-4761-9364-e315194b4f27" ], - "Set-Cookie": [ "ARRAffinity=8e66eeccb41bd82209cb1cba35c6d570a1f836b136eb1fff7197dfc992a3a45b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "f25febbd-4ba9-4afb-90de-33aeffcfcdcf" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "a0e9e443-8e26-472a-a67d-f945130bbd35" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144817Z:a0e9e443-8e26-472a-a67d-f945130bbd35" ], + "x-ms-correlation-request-id": [ "aad4711c-a170-4cbb-8b00-8569c5a4794c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020508Z:aad4711c-a170-4cbb-8b00-8569c5a4794c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:16 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay\",\"name\":\"testfcluster25n9il/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"attachedDatabaseConfigurationName\":\"testdbconf25n9il\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs\",\"name\":\"testfclusterbgiwc7/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"attachedDatabaseConfigurationName\":\"testdbconfbgiwc7\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15+2": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadOnlyFollowing\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P4D\"\r\n }\r\n}", "Headers": { }, @@ -222,34 +222,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5070fe64-d70b-4e53-bd86-2ade1893bacc?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "a734ab87-5d89-4c1a-b79f-33084cceee1d" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5070fe64-d70b-4e53-bd86-2ade1893bacc?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=64a84d1b8be40d42410441039be54e62669e05f3addf3e9ab79064612877a188;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/1aaed376-bb54-4815-9066-e72530ed8969?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "489b06ae-cfac-4925-a785-9a7e7a26947f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1aaed376-bb54-4815-9066-e72530ed8969?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "198" ], - "x-ms-correlation-request-id": [ "6db91b0d-feec-439a-9942-153dd237cb50" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144817Z:6db91b0d-feec-439a-9942-153dd237cb50" ], + "x-ms-correlation-request-id": [ "c572a23b-d5d3-425c-a936-4325231c0adb" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020508Z:c572a23b-d5d3-425c-a936-4325231c0adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:17 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "406" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay\",\"name\":\"testfcluster25n9il/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P4D\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs\",\"name\":\"testfclusterbgiwc7/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P4D\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/5070fe64-d70b-4e53-bd86-2ade1893bacc?api-version=2020-02-15+3": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/1aaed376-bb54-4815-9066-e72530ed8969?api-version=2020-06-14+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/5070fe64-d70b-4e53-bd86-2ade1893bacc?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/1aaed376-bb54-4815-9066-e72530ed8969?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "701", "702" ], - "x-ms-client-request-id": [ "f8f2709b-1b5e-4c28-aadf-d2cd2f26aefb", "f8f2709b-1b5e-4c28-aadf-d2cd2f26aefb" ], + "x-ms-unique-id": [ "636", "637" ], + "x-ms-client-request-id": [ "97d1f3d4-0e01-45f4-a025-dcc29f902989", "97d1f3d4-0e01-45f4-a025-dcc29f902989" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_Update", "Update-AzKustoDatabase_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -265,32 +265,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "75319d3c-8007-4e70-bcfe-55ed9e7c4d19" ], - "x-ms-request-id": [ "b9f7f530-a15a-4c4f-8de7-78180b5b8df7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "282" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "288" ], + "x-ms-request-id": [ "8d58c82f-285b-4503-a9e8-7ee85ab2ffc8" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144848Z:75319d3c-8007-4e70-bcfe-55ed9e7c4d19" ], + "x-ms-correlation-request-id": [ "343c9c93-a339-4c6e-9b12-81522dfec553" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020539Z:343c9c93-a339-4c6e-9b12-81522dfec553" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:47 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "504" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/5070fe64-d70b-4e53-bd86-2ade1893bacc\",\"name\":\"5070fe64-d70b-4e53-bd86-2ade1893bacc\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:48:17.8354544Z\",\"endTime\":\"2020-05-07T14:48:20.3355052Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"0e809dd3-2c42-40b6-b36d-be152e78cd86\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/1aaed376-bb54-4815-9066-e72530ed8969\",\"name\":\"1aaed376-bb54-4815-9066-e72530ed8969\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:05:08.6907829Z\",\"endTime\":\"2020-08-03T02:05:10.9307029Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"bfc10ec5-d4b4-427a-9cb3-b19eb1a3fcd9\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15+4": { + "Update-AzKustoDatabase+[NoContext]+UpdateExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "701", "702", "703" ], - "x-ms-client-request-id": [ "f8f2709b-1b5e-4c28-aadf-d2cd2f26aefb", "f8f2709b-1b5e-4c28-aadf-d2cd2f26aefb", "f8f2709b-1b5e-4c28-aadf-d2cd2f26aefb" ], + "x-ms-unique-id": [ "636", "637", "638" ], + "x-ms-client-request-id": [ "97d1f3d4-0e01-45f4-a025-dcc29f902989", "97d1f3d4-0e01-45f4-a025-dcc29f902989", "97d1f3d4-0e01-45f4-a025-dcc29f902989" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_Update", "Update-AzKustoDatabase_Update", "Update-AzKustoDatabase_Update" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -308,31 +308,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "296" ], - "x-ms-request-id": [ "c51553d9-adb6-4d4a-8614-456b34827eeb" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "74673b16-99bc-402c-8b8a-e0068a53cc4d" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "4c7a1436-15b7-4a10-8c15-4c90f2bad32d" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144848Z:4c7a1436-15b7-4a10-8c15-4c90f2bad32d" ], + "x-ms-correlation-request-id": [ "c5cbe1a8-4bd6-44ba-b01e-e6bddc8006c0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020539Z:c5cbe1a8-4bd6-44ba-b01e-e6bddc8006c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay\",\"name\":\"testfcluster25n9il/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"attachedDatabaseConfigurationName\":\"testdbconf25n9il\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":4,\"hotCachePeriod\":\"P4D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs\",\"name\":\"testfclusterbgiwc7/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"attachedDatabaseConfigurationName\":\"testdbconfbgiwc7\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":4,\"hotCachePeriod\":\"P4D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "704" ], - "x-ms-client-request-id": [ "d4364f70-3f8f-47ef-8fcb-c4a7f5dc03bd" ], + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "46dc3475-a725-45ac-b5e9-7cbd6b6a593f" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -350,31 +350,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "295" ], - "x-ms-request-id": [ "03ff8d34-8e2e-4cfa-b609-5120fbf4aef6" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "75546072-81fc-4c8a-9869-779a9c8122d2" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "2a2ced45-121d-4402-80da-1167779ebd56" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144849Z:2a2ced45-121d-4402-80da-1167779ebd56" ], + "x-ms-correlation-request-id": [ "68ec2003-842a-4e56-9130-9c75882385d2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020540Z:68ec2003-842a-4e56-9130-9c75882385d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+2": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "705" ], - "x-ms-client-request-id": [ "d43c0724-1f6a-478d-9c96-308a91d9cd1f" ], + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "0c3b4c78-a1b0-4845-b222-c67cbf7684fc" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -392,27 +392,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "294" ], - "x-ms-request-id": [ "5e9356f2-cb37-4ff8-b9d4-591c458925a3" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "1891406e-3926-4f85-8636-6d72b01ee5a9" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "c30dd4a0-5e39-4a5f-80b4-dc2f9cfcd39e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144849Z:c30dd4a0-5e39-4a5f-80b4-dc2f9cfcd39e" ], + "x-ms-correlation-request-id": [ "60654427-fdd0-486d-89b9-ea755bd8c1a0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020541Z:60654427-fdd0-486d-89b9-ea755bd8c1a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:48 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":5,\"softDeletePeriod\":\"P5D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+3": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+3": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadWrite\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P2D\",\r\n \"softDeletePeriod\": \"P4D\"\r\n }\r\n}", "Headers": { }, @@ -427,34 +427,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fadcf8ef-a0f3-483d-9ef4-782ddcd19543?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "bb01656f-d5ac-4486-9015-fc5b2624a31a" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fadcf8ef-a0f3-483d-9ef4-782ddcd19543?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=9a838ce951ff4a4e588f47ec992dc9adcb73c9a40c27b5fc6f5d3195a90fb3f7;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/76df9803-5b94-4e04-af2e-2f72e3d367f3?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "6e7c60df-af87-407f-8330-00d5566db37a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/76df9803-5b94-4e04-af2e-2f72e3d367f3?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "197" ], - "x-ms-correlation-request-id": [ "25af957a-10db-4c37-978a-6b25bfdeac74" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144850Z:25af957a-10db-4c37-978a-6b25bfdeac74" ], + "x-ms-correlation-request-id": [ "2fc26e5d-59fd-4145-a59e-a222b24d2ed7" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020541Z:2fc26e5d-59fd-4145-a59e-a222b24d2ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:48:49 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:05:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P2D\",\"softDeletePeriod\":\"P4D\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P2D\",\"softDeletePeriod\":\"P4D\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/fadcf8ef-a0f3-483d-9ef4-782ddcd19543?api-version=2020-02-15+4": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/76df9803-5b94-4e04-af2e-2f72e3d367f3?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/fadcf8ef-a0f3-483d-9ef4-782ddcd19543?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/76df9803-5b94-4e04-af2e-2f72e3d367f3?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "706", "707" ], - "x-ms-client-request-id": [ "804399e6-b3b4-4688-bd27-211dadbee4cb", "804399e6-b3b4-4688-bd27-211dadbee4cb" ], + "x-ms-unique-id": [ "641", "642" ], + "x-ms-client-request-id": [ "a455d3da-a748-4665-bebb-abda64c49456", "a455d3da-a748-4665-bebb-abda64c49456" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_UpdateViaIdentity", "Update-AzKustoDatabase_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -470,32 +470,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "281" ], - "x-ms-request-id": [ "bd91e1ee-a9fb-4d26-a5f5-4dd6742b9b44" ], - "Set-Cookie": [ "ARRAffinity=73188f00504f8544b9d429869eef32f3dcd5548d04365edd03c9732994baf421;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "287" ], + "x-ms-request-id": [ "e05fdedb-34cb-4083-9277-e74f0d80018c" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "ba9b89a9-1f8c-4ea5-92dd-a7f5ee8441c6" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144920Z:ba9b89a9-1f8c-4ea5-92dd-a7f5ee8441c6" ], + "x-ms-correlation-request-id": [ "d2da7079-1d2c-496f-9853-61ac3ae2edb2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020612Z:d2da7079-1d2c-496f-9853-61ac3ae2edb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:19 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "467" ], + "Content-Length": [ "496" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/fadcf8ef-a0f3-483d-9ef4-782ddcd19543\",\"name\":\"fadcf8ef-a0f3-483d-9ef4-782ddcd19543\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:48:49.9676793Z\",\"endTime\":\"2020-05-07T14:48:52.2333049Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"b3528f52-90b2-48ed-9c0c-64b775d7aec3\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/76df9803-5b94-4e04-af2e-2f72e3d367f3\",\"name\":\"76df9803-5b94-4e04-af2e-2f72e3d367f3\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:05:41.6729771Z\",\"endTime\":\"2020-08-03T02:05:43.6106955Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"DatabaseCreate\",\"RootActivityId\":\"5aba41ba-1bd9-435d-bdfc-a8da1efb1c22\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15+5": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadWrite+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "706", "707", "708" ], - "x-ms-client-request-id": [ "804399e6-b3b4-4688-bd27-211dadbee4cb", "804399e6-b3b4-4688-bd27-211dadbee4cb", "804399e6-b3b4-4688-bd27-211dadbee4cb" ], + "x-ms-unique-id": [ "641", "642", "643" ], + "x-ms-client-request-id": [ "a455d3da-a748-4665-bebb-abda64c49456", "a455d3da-a748-4665-bebb-abda64c49456", "a455d3da-a748-4665-bebb-abda64c49456" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_UpdateViaIdentity", "Update-AzKustoDatabase_UpdateViaIdentity", "Update-AzKustoDatabase_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -513,31 +513,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "293" ], - "x-ms-request-id": [ "3775457c-28c4-4fe7-8e10-44e1adfdc874" ], - "Set-Cookie": [ "ARRAffinity=c1f5052bc28b0bbf40575a6df2f4ded2368fd8ee0ff0267911659cdee815dfe0;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "45b411b8-8d4a-47cf-b6c4-fdfd95d487d5" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "0ab46854-5079-42a2-9318-60b8f2f2ce1e" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144920Z:0ab46854-5079-42a2-9318-60b8f2f2ce1e" ], + "x-ms-correlation-request-id": [ "2771e66f-a772-40e3-a414-d408a7c32e65" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020612Z:2771e66f-a772-40e3-a414-d408a7c32e65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "518" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay/Databases/testdatabasepb8oay\",\"name\":\"testclusterpb8oay/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs/Databases/testdatabaselbfexs\",\"name\":\"testclusterlbfexs/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadWrite\",\"tags\":{},\"properties\":{\"isFollowed\":true,\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":2,\"hotCachePeriod\":\"P2D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15+1": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "709" ], - "x-ms-client-request-id": [ "68d7bb37-709a-4740-a0f5-e013b1fae84a" ], + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "0ac6e9a7-136d-4356-bc5f-921e8cca2a14" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -555,31 +555,31 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "292" ], - "x-ms-request-id": [ "b4b6fcc2-8c51-42b3-bff1-959b90bc2893" ], - "Set-Cookie": [ "ARRAffinity=322636332396dc9c2c583f1f95d6956f84718edf355825979649eda7bf94886e;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "f6c99c81-a273-4b8e-b27a-2cfd30cc7f5e" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "743a6da7-9e72-4315-97f3-49e5162290df" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144920Z:743a6da7-9e72-4315-97f3-49e5162290df" ], + "x-ms-correlation-request-id": [ "f216717b-ad0d-404c-bf65-cbb09651d139" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020612Z:f216717b-ad0d-404c-bf65-cbb09651d139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay\",\"name\":\"testfcluster25n9il/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"attachedDatabaseConfigurationName\":\"testdbconf25n9il\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":4,\"hotCachePeriod\":\"P4D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs\",\"name\":\"testfclusterbgiwc7/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"attachedDatabaseConfigurationName\":\"testdbconfbgiwc7\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":4,\"hotCachePeriod\":\"P4D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15+2": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "710" ], - "x-ms-client-request-id": [ "269b6b0e-1de2-4612-8f7c-6101e0d72675" ], + "x-ms-unique-id": [ "645" ], + "x-ms-client-request-id": [ "053bc967-e027-479f-921d-fa4f2b2a46b5" ], "CommandName": [ "Get-AzKustoDatabase" ], "FullCommandName": [ "Get-AzKustoDatabase_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -597,27 +597,27 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "291" ], - "x-ms-request-id": [ "8f4e4d26-c082-474d-b20f-fcb7e4f2246d" ], - "Set-Cookie": [ "ARRAffinity=45bc5646e5f63163a799271f995382b84c5f2334391266b6d89f9667ca2e960a;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "146b56bd-71d7-48a2-bb85-70d727108fa7" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "25a56b8f-424a-401a-8b43-f65d26f1061f" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144921Z:25a56b8f-424a-401a-8b43-f65d26f1061f" ], + "x-ms-correlation-request-id": [ "f79f0cc4-489c-4557-a30e-bd448926b5a5" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020613Z:f79f0cc4-489c-4557-a30e-bd448926b5a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:20 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay\",\"name\":\"testfcluster25n9il/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"attachedDatabaseConfigurationName\":\"testdbconf25n9il\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":4,\"hotCachePeriod\":\"P4D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs\",\"name\":\"testfclusterbgiwc7/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"attachedDatabaseConfigurationName\":\"testdbconfbgiwc7\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":4,\"hotCachePeriod\":\"P4D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15+3": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$PATCH+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14+3": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": "{\r\n \"kind\": \"ReadOnlyFollowing\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"hotCachePeriod\": \"P3D\"\r\n }\r\n}", "Headers": { }, @@ -632,34 +632,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "ETag": [ "\"\"" ], - "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/40a85045-d371-47ae-80f9-1654dcec5141?api-version=2020-02-15\u0026operationResultResponseType=Location" ], - "x-ms-request-id": [ "d53bdd30-a5ea-4bc9-b7c5-808a4fba472d" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/40a85045-d371-47ae-80f9-1654dcec5141?api-version=2020-02-15" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "Location": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0b13ee04-5cfc-492b-97f7-7cbfc50510e5?api-version=2020-06-14\u0026operationResultResponseType=Location" ], + "x-ms-request-id": [ "a6b7efe3-ccd8-4fa5-a064-00fe22482da8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0b13ee04-5cfc-492b-97f7-7cbfc50510e5?api-version=2020-06-14" ], + "Set-Cookie": [ "ARRAffinity=ee13eefe4ea373fa5ef5790d247e631fbf86d1836803eb84090a9ff65767d97e;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "196" ], - "x-ms-correlation-request-id": [ "05b5d04a-31bf-4b8f-a226-d9f2dab55d43" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144921Z:05b5d04a-31bf-4b8f-a226-d9f2dab55d43" ], + "x-ms-correlation-request-id": [ "680b7bed-3ef5-4565-a97c-2be7f5a998e3" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020614Z:680b7bed-3ef5-4565-a97c-2be7f5a998e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:21 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "406" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay\",\"name\":\"testfcluster25n9il/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P3D\",\"provisioningState\":\"Accepted\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs\",\"name\":\"testfclusterbgiwc7/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"hotCachePeriod\":\"P3D\",\"provisioningState\":\"Accepted\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/40a85045-d371-47ae-80f9-1654dcec5141?api-version=2020-02-15+4": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationResults/0b13ee04-5cfc-492b-97f7-7cbfc50510e5?api-version=2020-06-14+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/40a85045-d371-47ae-80f9-1654dcec5141?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East%20US/operationResults/0b13ee04-5cfc-492b-97f7-7cbfc50510e5?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "711", "712" ], - "x-ms-client-request-id": [ "c3e49716-161c-4249-9448-c02704c880ad", "c3e49716-161c-4249-9448-c02704c880ad" ], + "x-ms-unique-id": [ "646", "647" ], + "x-ms-client-request-id": [ "bae91571-d0b3-4191-b72e-893ef9309ab2", "bae91571-d0b3-4191-b72e-893ef9309ab2" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_UpdateViaIdentity", "Update-AzKustoDatabase_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], @@ -675,32 +675,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-correlation-request-id": [ "c9b4777a-312d-4e88-8b2c-47e568614205" ], - "x-ms-request-id": [ "30fd34b3-8c05-403b-9424-597edc7ac3ea" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "280" ], - "Set-Cookie": [ "ARRAffinity=6546d31d55ee4830d02435ffb7e23d3cc2fbc05a13894098a441197898802a3b;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-correlation-request-id": [ "7d0f8ec2-2deb-4e15-90be-f2515d972d22" ], + "x-ms-request-id": [ "59e6e1d5-1e1c-4218-bc34-ddb0b22231a1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "286" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144952Z:c9b4777a-312d-4e88-8b2c-47e568614205" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020644Z:7d0f8ec2-2deb-4e15-90be-f2515d972d22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "475" ], + "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/40a85045-d371-47ae-80f9-1654dcec5141\",\"name\":\"40a85045-d371-47ae-80f9-1654dcec5141\",\"status\":\"Succeeded\",\"startTime\":\"2020-05-07T14:49:21.7392002Z\",\"endTime\":\"2020-05-07T14:49:24.4892528Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"354150d6-c944-4f64-ac01-8a6c551d96f7\",\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/providers/Microsoft.Kusto/locations/East US/operationresults/0b13ee04-5cfc-492b-97f7-7cbfc50510e5\",\"name\":\"0b13ee04-5cfc-492b-97f7-7cbfc50510e5\",\"status\":\"Succeeded\",\"startTime\":\"2020-08-03T02:06:13.9709274Z\",\"endTime\":\"2020-08-03T02:06:17.974123Z\",\"percentComplete\":1.0,\"properties\":{\"OperationKind\":\"FollowerDatabaseCreate\",\"RootActivityId\":\"f09953f0-c737-4378-9c4a-ce12c3977f13\",\"provisioningState\":\"Succeeded\",\"OperationState\":\"Completed\"}}" } }, - "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15+5": { + "Update-AzKustoDatabase+[NoContext]+UpdateViaIdentityExpandedReadOnlyFollowing+$GET+https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay?api-version=2020-02-15", + "RequestUri": "https://management.azure.com/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs?api-version=2020-06-14", "Content": null, "Headers": { - "x-ms-unique-id": [ "711", "712", "713" ], - "x-ms-client-request-id": [ "c3e49716-161c-4249-9448-c02704c880ad", "c3e49716-161c-4249-9448-c02704c880ad", "c3e49716-161c-4249-9448-c02704c880ad" ], + "x-ms-unique-id": [ "646", "647", "648" ], + "x-ms-client-request-id": [ "bae91571-d0b3-4191-b72e-893ef9309ab2", "bae91571-d0b3-4191-b72e-893ef9309ab2", "bae91571-d0b3-4191-b72e-893ef9309ab2" ], "CommandName": [ "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase", "Az.Kusto.internal\\Update-AzKustoDatabase" ], "FullCommandName": [ "Update-AzKustoDatabase_UpdateViaIdentity", "Update-AzKustoDatabase_UpdateViaIdentity", "Update-AzKustoDatabase_UpdateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], @@ -718,21 +718,21 @@ "ETag": [ "\"\"" ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "290" ], - "x-ms-request-id": [ "e5bb5330-f80c-4414-8736-1ac2cecf0cc3" ], - "Set-Cookie": [ "ARRAffinity=1d5fb298951795712d54b2df0c89d185153c650eca2a3f79345b380a30442d23;Path=/;HttpOnly;Domain=rp-kustorpeus-website.azurewebsites.net" ], + "x-ms-request-id": [ "e1d803e2-a5da-45bf-86c3-03a71f94504d" ], + "Set-Cookie": [ "ARRAffinity=c4c56cbfa1f31e59b0464659d34eccda0294610fd03b5c877b0ab8b9618d4fc3;Path=/;HttpOnly;Domain=armrp-kustorpeus.kusto.windows.net" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-correlation-request-id": [ "95923fbc-4b5f-46c5-9002-5bf28a7d2404" ], - "x-ms-routing-request-id": [ "UKSOUTH:20200507T144952Z:95923fbc-4b5f-46c5-9002-5bf28a7d2404" ], + "x-ms-correlation-request-id": [ "71678c4d-8045-47d7-8503-1efd825b50fd" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20200803T020645Z:71678c4d-8045-47d7-8503-1efd825b50fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 07 May 2020 14:49:51 GMT" ] + "Date": [ "Mon, 03 Aug 2020 02:06:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testfcluster25n9il/Databases/testdatabasepb8oay\",\"name\":\"testfcluster25n9il/testdatabasepb8oay\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouppb8oay/providers/Microsoft.Kusto/Clusters/testclusterpb8oay\",\"attachedDatabaseConfigurationName\":\"testdbconf25n9il\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testfclusterbgiwc7/Databases/testdatabaselbfexs\",\"name\":\"testfclusterbgiwc7/testdatabaselbfexs\",\"type\":\"Microsoft.Kusto/Clusters/Databases\",\"etag\":\"\\\"\\\"\",\"location\":\"East US\",\"kind\":\"ReadOnlyFollowing\",\"tags\":{},\"properties\":{\"leaderClusterResourceId\":\"/subscriptions/11d5f159-a21d-4a6c-8053-c3aae30057cf/resourceGroups/testgrouplbfexs/providers/Microsoft.Kusto/Clusters/testclusterlbfexs\",\"attachedDatabaseConfigurationName\":\"testdbconfbgiwc7\",\"principalsModificationKind\":\"Union\",\"softDeletePeriodInDays\":4,\"softDeletePeriod\":\"P4D\",\"hotCachePeriodInDays\":3,\"hotCachePeriod\":\"P3D\",\"statistics\":{\"size\":0.0},\"provisioningState\":\"Succeeded\"}}" } } } \ No newline at end of file diff --git a/src/Kusto/test/common.ps1 b/src/Kusto/test/common.ps1 index 4910e9ff2565..e35de7dee17d 100644 --- a/src/Kusto/test/common.ps1 +++ b/src/Kusto/test/common.ps1 @@ -179,16 +179,10 @@ function Validate_EventHubDataConnection { [string]$dataConnectionFullName, [string]$location, [string]$eventHubResourceId, - [string]$tableName, - [string]$tableMappingName, - [string]$dataFormat, [string]$kind) $DataConnection.Name | Should Be $dataConnectionFullName $DataConnection.Location | Should Be $location $DataConnection.EventHubResourceId | Should Be $eventHubResourceId - $DataConnection.TableName | Should Be $tableName - $DataConnection.MappingRuleName | Should Be $tableMappingName - $DataConnection.DataFormat | Should Be $dataFormat $DataConnection.Kind | Should Be $kind } @@ -202,17 +196,11 @@ function Validate_EventGridDataConnection { [string]$location, [string]$eventHubResourceId, [string]$storageAccountResourceId, - [string]$tableName, - [string]$tableMappingName, - [string]$dataFormat, [string]$kind) $DataConnection.Name | Should Be $dataConnectionFullName $DataConnection.Location | Should Be $location $DataConnection.EventHubResourceId | Should Be $eventHubResourceId $DataConnection.StorageAccountResourceId | Should Be $storageAccountResourceId - $DataConnection.TableName | Should Be $tableName - $DataConnection.MappingRuleName | Should Be $tableMappingName - $DataConnection.DataFormat | Should Be $dataFormat $DataConnection.Kind | Should Be $kind } @@ -226,17 +214,11 @@ function Validate_IotHubDataConnection { [string]$location, [string]$iotHubResourceId, [string]$sharedAccessPolicyName, - [string]$tableName, - [string]$tableMappingName, - [string]$dataFormat, [string]$kind) $DataConnection.Name | Should Be $dataConnectionFullName $DataConnection.Location | Should Be $location $DataConnection.IotHubResourceId | Should Be $iotHubResourceId $DataConnection.SharedAccessPolicyName | Should Be $sharedAccessPolicyName - $DataConnection.TableName | Should Be $tableName - $DataConnection.MappingRuleName | Should Be $tableMappingName - $DataConnection.DataFormat | Should Be $dataFormat $DataConnection.Kind | Should Be $kind } diff --git a/src/Kusto/test/constants.json b/src/Kusto/test/constants.json index aa0ee5984042..32df99ba12cd 100644 --- a/src/Kusto/test/constants.json +++ b/src/Kusto/test/constants.json @@ -4,9 +4,6 @@ "skuName" : "Standard_D11_v2", "updatedSkuName" : "Standard_D12_v2", "capacity" : 2, - "dataFormat": "JSON", - "tableName": "Events", - "tableMappingName": "EventsMapping", "defaultPrincipalsModificationKind": "Union", "langExt1": "R", "langExt2": "PYTHON", diff --git a/src/Kusto/test/deployment-templates/event-grid/parameters.json b/src/Kusto/test/deployment-templates/event-grid/parameters.json index 38190950d8a1..9da5ba135bcd 100644 --- a/src/Kusto/test/deployment-templates/event-grid/parameters.json +++ b/src/Kusto/test/deployment-templates/event-grid/parameters.json @@ -3,10 +3,10 @@ "contentVersion": "1.0.0.0", "parameters": { "namespaces_sdkpseventhubnsg_name": { - "value": "eventhubnsgrid25n9il" + "value": "eventhubnsgridbgiwc7" }, "eventhubg_name": { - "value": "eventgrid25n9il" + "value": "eventgridbgiwc7" } } } diff --git a/src/Kusto/test/deployment-templates/event-hub/parameters.json b/src/Kusto/test/deployment-templates/event-hub/parameters.json index b6e97a7755a2..1ee6be84e8a4 100644 --- a/src/Kusto/test/deployment-templates/event-hub/parameters.json +++ b/src/Kusto/test/deployment-templates/event-hub/parameters.json @@ -3,10 +3,10 @@ "contentVersion": "1.0.0.0", "parameters": { "namespaces_sdkpseventhubns_name": { - "value": "eventhubnspb8oay" + "value": "eventhubnslbfexs" }, "eventhub_name": { - "value": "eventhubpb8oay" + "value": "eventhublbfexs" } } } diff --git a/src/Kusto/test/deployment-templates/storage-account/parameters.json b/src/Kusto/test/deployment-templates/storage-account/parameters.json index b408bd26096c..ab594f4a6abb 100644 --- a/src/Kusto/test/deployment-templates/storage-account/parameters.json +++ b/src/Kusto/test/deployment-templates/storage-account/parameters.json @@ -3,7 +3,7 @@ "contentVersion": "1.0.0.0", "parameters": { "storageAccounts_sdkpsstorage_name": { - "value": "storagepb8oay" + "value": "storagelbfexs" } } } diff --git a/src/Kusto/test/env.json b/src/Kusto/test/env.json index 812ed9fdbce1..2df07361ca6c 100644 --- a/src/Kusto/test/env.json +++ b/src/Kusto/test/env.json @@ -1,45 +1,42 @@ { - "rstr5": "axb9i7", - "capacity": 2, - "defaultPrincipalsModificationKind": "Union", - "iothubSharedAccessPolicyName": "registryRead", + "eventhubName": "eventhublbfexs", + "iothubName": "iothublbfexs", + "rstr5": "r4qwo8", + "eventhubNameForEventGrid": "eventgridbgiwc7", "principalType": "App", - "rstr4": "i6wlsf", - "skuTier": "Standard", - "tableName": "Events", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "langExt1": "R", + "skuName": "Standard_D11_v2", + "PlainClusterName": "testclusterv76dg4", + "principalAssignmentName": "KustoClientsScenarioTest", + "location": "East US", "principalId": "713c3475-5021-4f3b-a650-eaa9a83f25a4", + "resourceType": "Microsoft.Kusto/Clusters", + "skuTier": "Standard", + "capacity": 2, "databasePrincipalAssignmentResourceType": "Microsoft.Kusto/Clusters/Databases/principalAssignments", - "eventhubNSNameForEventGrid": "eventhubnsgrid25n9il", - "location": "East US", - "dataConnectionName": "testdataconnectionpb8oay", + "databaseType": "Microsoft.Kusto/Clusters/Databases", + "defaultPrincipalsModificationKind": "Union", + "storageName": "storagelbfexs", + "clusterName": "testclusterlbfexs", + "principalAssignmentName1": "principalassignment1", + "databaseName": "testdatabaselbfexs", + "eventhubNSNameForEventGrid": "eventhubnsgridbgiwc7", "SubscriptionId": "11d5f159-a21d-4a6c-8053-c3aae30057cf", - "followerClusterName": "testfcluster25n9il", - "eventhubNSName": "eventhubnspb8oay", - "dataFormat": "JSON", - "databasePrincipalRole": "Viewer", - "dataConnectionResourceType": "Microsoft.Kusto/Clusters/Databases/dataConnections", - "principalAssignmentName": "KustoClientsScenarioTest", - "iothubName": "iothubpb8oay", - "resourceGroupName": "testgrouppb8oay", "principalRole": "AllDatabasesViewer", - "principalAssignmentName1": "principalassignment1", - "databaseName": "testdatabasepb8oay", - "skuName": "Standard_D11_v2", - "attachedDatabaseConfigurationName": "testdbconf25n9il", - "storageName": "storagepb8oay", - "rstr6": "2tmpqx", - "resourceType": "Microsoft.Kusto/Clusters", - "eventhubName": "eventhubpb8oay", + "rstr6": "wmcyao", + "attachedDatabaseConfigurationName": "testdbconfbgiwc7", + "eventhubNSName": "eventhubnslbfexs", "databaseName1": null, - "databaseType": "Microsoft.Kusto/Clusters/Databases", + "clusterPrincipalAssignmentResourceType": "Microsoft.Kusto/clusters/principalAssignments", "updatedSkuName": "Standard_D12_v2", + "databasePrincipalRole": "Viewer", "principalId1": "e60fe5c8-d6a5-4dee-b382-fb4502588dd0", - "tableMappingName": "EventsMapping", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "PlainClusterName": "testclustervmhz6a", "langExt2": "PYTHON", - "eventhubNameForEventGrid": "eventgrid25n9il", - "clusterName": "testclusterpb8oay", - "clusterPrincipalAssignmentResourceType": "Microsoft.Kusto/clusters/principalAssignments", - "langExt1": "R" + "dataConnectionResourceType": "Microsoft.Kusto/Clusters/Databases/dataConnections", + "resourceGroupName": "testgrouplbfexs", + "followerClusterName": "testfclusterbgiwc7", + "rstr4": "su8yho", + "dataConnectionName": "testdataconnectionlbfexs", + "iothubSharedAccessPolicyName": "registryRead" } diff --git a/src/Kusto/test/utils.ps1 b/src/Kusto/test/utils.ps1 index 8d366691b4e0..10db47aa0445 100644 --- a/src/Kusto/test/utils.ps1 +++ b/src/Kusto/test/utils.ps1 @@ -94,26 +94,19 @@ function setupEnv() { New-AzKustoClusterPrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $env.principalAssignmentName -PrincipalId $env.principalId -PrincipalType $env.principalType -Role $env.principalRole New-AzKustoDatabasePrincipalAssignment -ResourceGroupName $resourceGroupName -ClusterName $clusterName -PrincipalAssignmentName $env.principalAssignmentName -DatabaseName $databaseName -PrincipalId $env.principalId -PrincipalType $env.principalType -Role $env.databasePrincipalRole - # Note: for DataConnection tests, 3 data connections must be created, - # For data connections to work you need to create a tabel <$env.tableName>, MappingRuleName <$env.tableMappingName> and MappingRuleName for update cmdlet <$env.tableMappingName1>, - # Example of setting: - # .create table Events (TimeStamp: datetime, Name: string, Metric: int, Source: string) - # .create table Events ingestion json mapping "EventsMapping" '[{"column":"TimeStamp","path":"$.timeStamp","datatype":"","transform":null},{"column":"Name","path":"$.name","datatype":"","transform":null},{"column":"Metric","path":"$.metric","datatype":"","transform":null},{"column":"Source","path":"$.source","datatype":"","transform":null}]' - # .create table Events ingestion json mapping "EventsMapping1" '[{"column":"TimeStamp","path":"$.timeStamp","datatype":"","transform":null},{"column":"Name","path":"$.name","datatype":"","transform":null},{"column":"Metric","path":"$.metric","datatype":"","transform":null},{"column":"Source","path":"$.source","datatype":"","transform":null}]' - # - # Example for data connections: - # $dataConnectionName = $env.dataConnectionName - # $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNSName/eventhubs/$eventhubName" - # New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $location -Kind "EventHub" -EventHubResourceId $eventHubResourceId -DataFormat $env.dataFormat -ConsumerGroup '$Default' -Compression "None" -TableName $env.tableName -MappingRuleName $env.tableMappingName - # - # $dataConnectionName = $env.dataConnectionName + "g" - # $eventHubResourceId = "/subscriptions/$SubscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNSGName/eventhubs/$eventhubGName" - # $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageName" - # New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind "EventGrid" -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -DataFormat $env.dataFormat -ConsumerGroup '$Default' -TableName $env.tableName -MappingRuleName $env.tableMappingName - # - # $dataConnectionName = $env.dataConnectionName + "h" - # $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" - # New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $location -Kind "IotHub" -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $env.iothubSharedAccessPolicyName -DataFormat $env.dataFormat -ConsumerGroup '$Default' -TableName $env.tableName -MappingRuleName $env.tableMappingName + # Create data connections: + $dataConnectionName = $env.dataConnectionName + $eventHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNSName/eventhubs/$eventhubName" + New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -Location $env.location -Kind "EventHub" -EventHubResourceId $eventHubResourceId -ConsumerGroup '$Default' -Compression "None" + + $dataConnectionName = $env.dataConnectionName + "g" + $eventHubResourceId = "/subscriptions/$SubscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.EventHub/namespaces/$eventhubNSGName/eventhubs/$eventhubGName" + $storageAccountResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Storage/storageAccounts/$storageName" + New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $env.location -Kind "EventGrid" -EventHubResourceId $eventHubResourceId -StorageAccountResourceId $storageAccountResourceId -ConsumerGroup '$Default' + + $dataConnectionName = $env.dataConnectionName + "h" + $iotHubResourceId = "/subscriptions/$subscriptionId/resourcegroups/$resourceGroupName/providers/Microsoft.Devices/IotHubs/$iothubName" + New-AzKustoDataConnection -ResourceGroupName $resourceGroupName -ClusterName $clusterName -DatabaseName $databaseName -DataConnectionName $dataConnectionName -location $env.location -Kind "IotHub" -IotHubResourceId $iotHubResourceId -SharedAccessPolicyName $env.iothubSharedAccessPolicyName -ConsumerGroup '$Default' # Deploy follower cluster for test $followerClusterName = "testfcluster" + $rstr2 @@ -141,5 +134,5 @@ function setupEnv() { function cleanupEnv() { # Clean resources you create for testing # Removing resourcegroup will clean all the resources created for testing. - Remove-AzResourceGroup -Name $env.resourceGroupName -Force + Remove-AzResourceGroup -Name $env.resourceGroupName }